垂直分割
開発ツールをドッキング解除して(左下隅のアイコンをクリックして)、新しいウィンドウに移動できます。次に、を押し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の通常のタブでできるように