Chrome开发者工具:有没有办法在单独的视图中查看Console
标签和Sources
标签?我经常想同时看看这两个。
在Sources
标签上按 Esc 可让我看到底部Console
的小视图。但是我希望同时对这两者有更大的看法。这可能吗?
如果没有,这是Chrome扩展程序可以做的事情吗?
编辑:
澄清 - 我知道如何取消停靠开发工具窗口(这是我的默认设置)。只是贪婪我想,并想知道我是否可以进一步将Sources
和Console
拆分成单独的未停靠的窗口(或者至少,让他们的视图在同一个窗口上垂直分割,而不是水平按压{ {1}}确实如此)
答案 0 :(得分:146)
您可以取消开发人员工具(通过单击左下角的图标),将其移动到新窗口。然后按 Esc 打开控制台。
窗口和“小型控制台”都可以调整大小以满足您的需求。
如果您希望控制台在右侧而不是底部,通过编辑来自定义开发人员工具,并添加以下规则:path/to/profile/Default/User StyleSheets/Custom.css
编辑:已删除对Custom.css
的支持,但仍可以使用新的chrome.devtools.panels.applyStyleSheet
方法(sample code)更改开发人员工具的样式。
/* If drawer has been expanded at least once AND it's still expanded */
#-webkit-web-inspector #main[style*="bottom"]:not([style*="bottom: 0"]) {
width: 50%;
bottom: 0 !important;
}
#-webkit-web-inspector #drawer[style*="height"]:not([style*="height: 0"]) {
/* The position of the drawer */
left: 50% !important;
/* styles to position the #drawer correctly */
top: 26px !important;
height: auto !important;
z-index: 1;
border-left: 1px solid rgb(64%, 64%, 64%);
}
#-webkit-web-inspector.show-toolbar-icons #drawer[style*="height"]:not([style*="height: 0"]) {
top: 56px !important;
}
结果如下:
答案 1 :(得分:75)
答案 2 :(得分:5)
更简单的解决方案是按住左下角的图标,弹出另一个图标,选中该图标后,您可以查看主浏览器窗口右侧的控制台
答案 3 :(得分:5)
我不知道如何分割开发人员工具窗口,但您可以在垂直,水平和自动(默认)面板布局之间切换,OP在澄清时询问了这些布局。我经常发现这很有用。
答案 4 :(得分:5)
答案 5 :(得分:1)