垂直分割
您可以取消开发人员工具的停靠(通过单击左下角的图标),将其移至新窗口。然后按Esc打开控制台。
窗口和“小型控制台”都可以调整大小以满足您的需求。
水平分割
如果您希望控制台位于右侧而不是底部,请通过编辑定制开发人员工具path/to/profile/Default/User StyleSheets/Custom.css
,并添加以下规则:
编辑:支持Custom.css
已被删除,但仍可以使用新的API chrome.devtools.panels.applyStyleSheet
方法(示例代码)来更改开发人员工具的样式。
/* 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;
}
结果看起来像这样:
Console
或Sources
与Chrome的普通标签就像一个单独的窗口,就像你可以做