Is it possible to open multiple instances or split view of chrome developer tools tabs?

人走茶凉 提交于 2019-11-29 14:02:10

You can view 'Quick source' while viewing the Network panel (or the other main panels) at the same. This will allow you to view the source and add breakpoints.

However, it's not possible to step through code using the debugging in the split view. Chrome will automatically switch to the Sources tab if you use the shortcuts.

It's also not possible to have an extension running a separate instance of the debugger as the Chrome Debugging Protocol doesn't allow simultaneous clients to be connected.

I will open up a discussion with other Chromium contributors into the feasibility of sharing the debugging controls in the split view. I don't know whether it will or can be done easily. I suspect it's a fair amount of work.

If you would like to set up the split view, as it's useful anyway, go to overflow menu on the right side and select 'More Tools' and then select 'Show console'. This makes sure the panel loads below the main one.

On the left side of the panel that shows, click the overflow menu and select 'Quick source'.

You will now see a small Sources panel.

  1. Open the Chrome DevTools (Mac: Alt + CMD + J, Windows/Linux: Control+Shift+J)
  2. Hit the three dots on the top right side (Customize and control DevTools)
  3. Under Dockside choose "Undock into seperate window"
  4. Press your keyboard shortcut to open the DevTools again.

Now you can create as many instances as you need.

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!