6

Is there a way where one can open a specific tab of the Chrome Developer Tools in a separate window? I have got 3 monitors and would like to have the Sources tab on one screen and the Elements on another screen. Is this possible?

Mark Cassar
  • 1,842
  • 4
  • 20
  • 27

1 Answers1

2

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

  • launch your chrome with --remote-debugging-port=9999 command line parameter
  • right click on your page to debug and select 'Inspect Element' - this is your debug window #1
  • open a separate chrome window and navigate to chrome://inspect
  • click 'Configure...' and add localhost:9999
  • within a couple of seconds under 'Remote Targets' you should see tabs you can inspect from your other chrome instance
  • click on the tab, and now this is your debug window #2

separate windows chrome developer panels

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

Daniel Sokolowski
  • 11,982
  • 4
  • 69
  • 55