Browser Developer Tools Shortcuts: Chrome, Firefox, and Edge

Compare keyboard shortcuts for Chrome DevTools, Firefox Developer Tools, and Edge DevTools. Universal shortcuts that work across all browsers.

Cross-Application

Detailed Explanation

Browser Developer Tools Shortcuts

All major browsers include developer tools with similar keyboard shortcuts. This guide compares Chrome DevTools, Firefox Developer Tools, and Microsoft Edge DevTools.

Opening DevTools

Action Chrome/Edge Firefox
Open DevTools ⌘+⌥+I / Ctrl+Shift+I ⌘+⌥+I / Ctrl+Shift+I
Open Console ⌘+⌥+J / Ctrl+Shift+J ⌘+⌥+K / Ctrl+Shift+K
Inspect Element ⌘+⌥+C / Ctrl+Shift+C ⌘+⌥+C / Ctrl+Shift+C
Toggle Device Mode ⌘+Shift+M / Ctrl+Shift+M ⌘+⌥+M / Ctrl+Shift+M

Debugging (Sources / Debugger Panel)

These shortcuts are nearly identical across browsers:

  • Resume / PauseF8 in all browsers
  • Step OverF10 in all browsers
  • Step IntoF11 in all browsers
  • Step OutShift+F11 in all browsers

Console

  • Clear Console⌘+K / Ctrl+L (Chrome/Edge), Ctrl+Shift+L (Firefox)
  • Multi-line InputShift+Enter in all browsers

Page Refresh

  • Normal Refresh⌘+R / Ctrl+R (all browsers)
  • Hard Refresh⌘+Shift+R / Ctrl+Shift+R (all browsers)
  • Empty Cache + Hard Refresh — right-click the refresh button with DevTools open (Chrome/Edge only)

Unique Features

Chrome/Edge:

  • Command Menu (⌘+Shift+P / Ctrl+Shift+P) for command palette access
  • Lighthouse built-in for performance auditing
  • Coverage tool for unused CSS/JS detection

Firefox:

  • CSS Grid Inspector with overlay visualization
  • Flexbox Inspector
  • Network throttling with custom profiles
  • Accessibility Inspector

Edge:

  • Source Maps debugging improvements
  • 3D View for DOM layer visualization
  • Network console for composing requests

Universal Tips

  1. All browsers support ⌘+P / Ctrl+P to open a file in the Sources panel
  2. All browsers support ⌘+Shift+P / Ctrl+Shift+P for the command menu (Edge/Chrome) or similar (Firefox)
  3. F12 opens DevTools in all browsers on all platforms

Use Case

Understanding browser DevTools shortcuts across Chrome, Firefox, and Edge is essential for cross-browser testing. Frontend developers often need to debug issues that only appear in specific browsers, and knowing the equivalent shortcuts in each browser saves time during debugging sessions. The debugging shortcuts (F8, F10, F11) are universal and should be muscle memory for any web developer.

Try It — Keyboard Shortcut Reference

Open full tool