Vertical split You can undock the developer tools (by clicking on the icon in the bottom-left corner), which moves it to a new window. Then press Esc to open the console. Both the window and the "small console" can be resized to meet your needs.
Go horizontal This isn't an ideal layout for most web debugging tasks, so click-and-hold the layout icon (in the top right of the DevTools Panel's menubar) to see the horizontal-layout option.
In the developer tools, klick the cogwheel icon (or press F1 when focusing the dev tools) to open the settings overlay. Under "Preferences", in the "Appearance" section, find the "Panel layout" option. Set it to your liking.
You can find the layout tab on the bottom of your dev tools. Within this tab you will see all the grids that are on the page. In this case, it's just the one. You can check the little checkbox before your grid, and it will highlight the grid.
You can undock the developer tools (by clicking on the icon in the bottom-left corner), which moves it to a new window. Then press Esc to open the console.
Both the window and the "small console" can be resized to meet your needs.
If you prefer to have the console at the right instead of the bottom, customize the developer tools by editing , and add the following rules:path/to/profile/Default/User StyleSheets/Custom.css
EDIT: Support for Custom.css
has been removed, but it's still possible to change the styles of the developer tools using a new API, chrome.devtools.panels.applyStyleSheet
method (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;
}
The result looks like this:
esc - is the shortcut ,
or at menu
(the three dots) click on show console drawer
In the right press the "Three Dots" and click "Show Console Drawer"
The OP has probably moved on since posting this three years ago, but for anyone else:
I don't know of any way to split the developer tool window, but you can switch between vertical, horizontal and auto (the default) panel layouts, which the OP asked about in their clarification. I have frequently found this to be useful.
An easier solution is to keep the bottom left icon pressed which will pop up another icon which, when selected, will allow you to view the console to the right of your main browser window
If You can type but don't see the console and can't resize it:
Then undock DevTools in upper-right corner. Then You will be able to resize it:
After this You can dock it back.
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With