Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

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

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?

like image 426
Mark Cassar Avatar asked Nov 25 '14 18:11

Mark Cassar


People also ask

How do I open Chrome developer tools in separate Windows?

Click and hold the button next to the close button of the Developer Tool in order to reveal the "Undock into separate window" option.

How do I move Chrome tabs to another monitor?

In the overview window, select the window you want to move. Drag the window to the monitor you want to view it in.


1 Answers

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

like image 151
Daniel Sokolowski Avatar answered Oct 18 '22 20:10

Daniel Sokolowski