Chrome DevTools is far faster from the keyboard, but the shortcuts are spread across panels and differ between macOS and Windows. This reference gathers the documented defaults and renders each chord for your platform.
How the reference works
Each shortcut stores the action, its panel, and a key pattern with a Mod placeholder that renders as Cmd on macOS and Ctrl on Windows/Linux, plus matching Option/Alt. The search box matches the action, the panel name, and the rendered keys — so searching “breakpoint” narrows directly to all breakpoint-related shortcuts across panels. The panel selector reduces the list to one section.
Essential shortcuts to learn first
If you use DevTools regularly, these six get you the most leverage:
| Action | macOS | Windows |
|---|---|---|
| Open DevTools | Cmd Option I | Ctrl Shift I |
| Inspect element | Cmd Shift C | Ctrl Shift C |
| Command Menu (run any action by name) | Cmd Shift P | Ctrl Shift P |
| Quick Open (fuzzy file search) | Cmd P | Ctrl P |
| Toggle device toolbar (responsive mode) | Cmd Shift M | Ctrl Shift M |
| Clear Console | Cmd K | Ctrl K |
The Command Menu (Cmd/Ctrl + Shift + P) deserves special mention: it is a command palette that runs any DevTools action by typing its name. When you forget a shortcut, open the Command Menu and type what you want to do — it is faster than consulting any reference table and shows the live binding for your version.
Debugger shortcuts (Sources panel)
Step debugging is the workflow where keyboard shortcuts matter most, because clicking through a debugger is painfully slow:
| Action | Key |
|---|---|
| Pause / Resume | F8 |
| Step over (next line, no entering functions) | F10 |
| Step into (enter the called function) | F11 |
| Step out (finish current function, return to caller) | Shift F11 |
| Toggle breakpoint on current line | Cmd B / Ctrl B |
Elements panel tips
In the Styles pane, arrow keys increment or decrement a selected numeric CSS value by 1. Hold Shift for steps of 10, Cmd/Ctrl for 100, or Alt/Option for 0.1 — useful for tweaking pixel values or opacity without leaving the keyboard.
H while a node is selected in the Elements tree toggles visibility: hidden on that element, letting you temporarily hide parts of the page to inspect what is beneath.
Network panel shortcuts
Cmd/Ctrl + Shift + E or the “preserve log” checkbox keeps the network log across page navigations — essential when debugging redirects. The filter bar at the top of the Network panel accepts resource-type filters like type:fetch or domain:api.example.com to reduce noise on busy pages.
Because bindings can shift between Chrome releases and some are user-remappable, treat the Command Menu as the source of truth when a chord does not respond as expected.