Open Chrome DevTools

Kayce Basques
Kayce Basques
Sofia Emelianova
Sofia Emelianova

There are many ways to open Chrome DevTools. Choose your favorite way from this comprehensive reference.

You can access DevTools using Chrome UI or keyboard:

Additionally, learn how toauto-open DevTools for every new tab.

Open DevTools from Chrome menus

If you prefer UI, you can access DevTools from drop-down menus in Chrome.

Open the Elements panel to inspect the DOM or CSS

To inspect, right-click an element on a page and selectInspect.

The Inspect option in a drop-down menu in Chrome.

DevTools opens theElements panel and selects the element in the DOM tree. In theStyles tab, you can see CSS rules applied to the selected element.

An element selected in the Elements panel.

Open the last panel you used from Chrome's main menu

To open the last DevTools panel, click the button to the right of the address bar and selectMore Tools >Developer Tools.

The Developer Tools option selected from the three-dot menu.

Alternatively, you can open the last panel with a shortcut. See the next section to learn more.

Open panels with shortcuts: Elements, Console, or your last panel

If you prefer keyboard, press a shortcut in Chrome depending on your operating system:

OSElementsConsoleYour last panel
Windows or LinuxCtrl +Shift +CCtrl +Shift +JF12
Ctrl +Shift +I
MacCmd +Option +CCmd +Option +JFn +F12
Cmd +Option +I

Here's an easy way to memorize the shortcuts:

  • C stands for CSS.
  • J for JavaScript.
  • I designates your choice.

TheC shortcut opens theElements panel in inspector mode. This mode shows you helpful tooltips when you hover over elements on a page. You can also click any element to view its CSS in theElements >Styles tab.

The Elements panel in inspector mode with a tooltip.

For the full list of DevTools shortcuts, seeKeyboard shortcuts.

Auto-open DevTools on every new tab

Run Chrome from the command line and pass the--auto-open-devtools-for-tabs flag:

  1. Quit any running Chrome instance.

    Key point: This flag works only for the first Chrome instance you open. If it doesn't work for you, for example, on Windows, make sure to end any residing Chrome processes from the Task Manager.
  2. Run your favorite terminal or command line application.

  3. Depending on your operating system, run the following command:

DevTools will automatically open for every new tab until you close Chrome.

What's next?

Success: Congratulations! You've successfully unlocked the power of Chrome DevTools.

Next, watch the following video to learn some useful shortcuts and settings for quicker DevTools navigation.

For a more hands-on learning experience, seehow to customize DevTools.

Except as otherwise noted, the content of this page is licensed under theCreative Commons Attribution 4.0 License, and code samples are licensed under theApache 2.0 License. For details, see theGoogle Developers Site Policies. Java is a registered trademark of Oracle and/or its affiliates.

Last updated 2018-12-14 UTC.