Open the Chrome Developer Tools tabs in a new window to show on multiple monitors

Is there a way to open a separate Chrome developer tools tab in a separate window? I have 3 monitors and want to have a tab Sources

on one screen and Elements

on another screen. Is it possible?

+4


source to share


1 answer


I find this limitation disappointing too, all other monitors are wasted! Here is a poor man's solution:

  • start chrome with command line parameter --remote-debugging-port=9999

  • right click on your debug page and select Inspect Item - this is your debug window # 1
  • open a separate chrome window and go to chrome://inspect

  • click "Configure ..." and add localhost:9999

  • within a few seconds, under "Deleted Targets", you'll see tabs that you can view from another instance of Chrome.
  • click on tab and now this is your debug window # 2


separate windows chrome developer panels

Unrelated tip: System-wide night mode experience: http://danielsokolowski.blogspot.com/2018/11/windows-10-8-7-night-mode.html

0


source







All Articles