Paused in debugger in Chrome issue [Solved]

avatar
Borislav Hadzhiev

Last updated: Apr 5, 2024
3 min

banner

# Table of Contents

  1. Paused in debugger in Chrome issue [Solved]
  2. Make sure you haven't enabled the "Pause on exceptions" feature
  3. Restoring the defaults and reloading the page
  4. Make sure none of the checkboxes in the left menu are checked
  5. Disable the paused state overlay in Chrome
  6. Issue the "Do not pause on exceptions" command

# Paused in debugger in Chrome issue [Solved]

paused in debugger in chrome

To resolve the "Paused in debugger" issue in Chrome:

  1. Open your developer tools by right-clicking on the page and selecting Inspect or by simply pressing F12.

  2. Click on the Sources tab.

  3. Click on the Deactivate breakpoints button or press Ctrl + F8.

click deactivate breakpoints

Here is a short clip that shows where the Deactivate breakpoints button is.

click deactivate breakpoints

  1. Refresh the page by clicking on the Reload this page button at the top left corner or by pressing F5.

refresh page chrome

If the issue persists even after refreshing the page.

  1. Open your developer tools.

  2. Click on the Sources tab.

  3. Click on the Deactivate breakpoints button or press Ctrl + F8.

click deactivate breakpoints

  1. In the menu on the left look for a Call Stack dropdown menu and expand it.
  2. Under Call Stack, right-click on (anonymous) and select Add script to ignore list.

add script to ignore list

  1. Refresh the page by clicking on the Reload this page button at the top left corner or by pressing F5.

refresh page chrome

Here is a short clip that demonstrates how this works.

add script to ignore list

# Make sure you haven't enabled the "Pause on exceptions" feature

If the issue persists, make sure you haven't enabled the "Pause on exceptions" feature in Chrome:

If the issue persists even after refreshing the page.

  1. Open your developer tools.

  2. Click on the Sources tab.

  3. In the menu on the left under Breakpoints, make sure the following two checkboxes are NOT checked:

  • "Pause on uncaught exceptions"
  • "Pause on caught exceptions"

disable pause on exceptions

  1. Once you uncheck the two checkboxes, refresh the page.

refresh page chrome

If the issue persists, make sure you don't have any checkboxes checked under XHR/fetch Breakpoints in the left menu.

xhr no breakpoints

If you see an "Any XHR" checkbox under "XHR/fetch Breakpoints", make sure it is unchecked.

# Restoring the defaults and reloading the page

If none of the suggestions helped:

  1. Click on the Cogwheel icon in the top right corner or press F1 + Shift + ?.

click cogwheel icon

  1. Scroll down until you see the Restore defaults and reload button in the Preferences tab.

click restore defaults and reload

  1. Reload the page.

# Make sure none of the checkboxes in the left menu are checked

If the issue persists:

  1. Open your developer tools.

  2. Click on the Sources tab.

  3. Expand each dropdown menu in the left sidebar and make sure that none of the checkboxes are checked.

uncheck all checkboxes from left menu

  1. Refresh the page.

refresh page chrome

# Disable the paused state overlay in Chrome

If the issue persists, disable the paused state overlay.

  1. Click on the Cogwheel icon in the top right corner or press F1 + Shift + ?.

click cogwheel icon

  1. In the Preferences tab, click on Disable paused state overlay.

disable paused state overlay

  1. Once you check the "Disable paused state overlay" checkbox, refresh the page.

refresh page chrome

# Issue the "Do not pause on exceptions" command

If the issue persists:

  1. Open your developer tools by right-clicking on the page and selecting Inspect or by simply pressing F12.

  2. Press Ctrl + Shift + P (or Cmd + Shift + P) on macOS.

  3. Type "Do not pause on exceptions" and select the command.

issue do not pause on exceptions command

  1. Refresh the page.

refresh page chrome

# Additional Resources

You can learn more about the related topics by checking out the following tutorials:

I wrote a book in which I share everything I know about how to become a better, more efficient programmer.
book cover
You can use the search field on my Home Page to filter through all of my articles.