縦割り
開発者ツールのドッキングを解除すると (左下隅にあるアイコンをクリックして)、新しいウィンドウに移動できます。次に、 を押しEscてコンソールを開きます。
ウィンドウと「小さなコンソール」は、ニーズに合わせてサイズを変更できます。
水平分割
コンソールを下部ではなく右側に配置したい場合は、を編集して開発者ツールをカスタマイズしpath/to/profile/Default/User StyleSheets/Custom.css
、次のルールを追加します。
編集: のサポートは削除されましたが、新しい APIメソッド (サンプル コードCustom.css
)を使用して開発者ツールのスタイルを変更することは引き続き可能です。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;
}
結果は次のようになります。