本文介绍了chrome开发人员工具-取消停放来源标签的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
是否可以使用Chrome开发者工具取消来源"标签的固定?如果我有3个监视器,我想:
Is there a way to undock the sources tab using Chrome developer tools?If I had 3 monitors, I would like:
- 要在监视器1上显示网页
- 要在监视器2上显示的元素"标签
- 将在监视器3上显示来源"标签
推荐答案
为同一个目标选项卡打开几个devtools选项卡,然后在每个选项卡中选择一个不同的视图.
Open several devtools tabs for the same target tab and choose a different view in each one.
准备工作:
- 使用浏览器菜单中的退出"命令退出Chrome
- 使用
--remote-debugging-port=9222
命令行运行Chrome- 您可以使用1024-65535范围内的任何数字,默认值为9222,只需确保没有被另一个程序使用(有查看打开端口的工具即可);
- 在操作系统/启动器中编辑Chrome快捷方式,并始终使用它来启动Chrome;
- exit Chrome by using the "Exit" command in the browser menu
- run Chrome with
--remote-debugging-port=9222
command line- you can use any number in 1024-65535 range, 9222 is the default, just make sure it's not used by another program (there are tools to view open ports);
- edit the Chrome shortcut in your OS/launcher and always use it to start Chrome;
用法:
- 在Chrome中打开
localhost:9222
(端口号是您在命令行中指定的端口号) - 点击目标标签的条目
- 将标签页移动到另一个显示屏
- in Chrome open
localhost:9222
(the port number is the one you've specified in the command line) - click the entry for your target tab
- move the tab to another display
根据需要重复多次.
这篇关于chrome开发人员工具-取消停放来源标签的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!