When debugging in chrome, the scripts are always paused in the debugger even if there are no break points set, and if the the pause is un-paused, it again pauses itself.
What can be done?
When debugging in chrome, the scripts are always paused in the debugger even if there are no break points set, and if the the pause is un-paused, it again pauses itself.
What can be done?
If you navigate to Sources you can see the pause
button at the bottom of the DevTools.
Basically there are 3 possible pause option in DevTools while debugging js file,
Don't pause on exceptions(
) :
The pause button will be in grey colour as if "Don't pause on exceptions" is active.

Pause on all exceptions(
) :
The pause button will be in blue colour as if "Pause on all exceptions" is active.

Pause on uncaught exceptions(
) :
The pause button will be in purple colour as if "Pause on uncaught exceptions" is active.

In your case, if you don't want to pause, select Don't pause on exceptions. To select, toggle the pause button till it become grey
.
Really silly issue that I ran into that led me here with the debugger; command.: "debugger;" has a watch set on it.
It caused a page that just said debugger; to appear between every page load.
The way to disable it is to just right-click said Watch and click "Delete watch expression".
Another user mentioned this in slight detail but I missed it until I came back here about 3 times over 2 days -
There is a section titled EventListener breakpoints that contains a list of other breakpoints that can be set. It happens that I accidentally enabled one of them on DOM Mutation that was letting me know whenever anything to the DOM was overridden. Unfortunately this led to me disabling a bunch of plug-ins and add-ons before I realized it was just my machine. Hope this helps someone else.
Threads > switch "Main" to "app"
In the "Threads" section I changed the context from "Main" > to "app". The "app" should have a blue arrow aside.
This was happening to me. I had a breakpoint on subtree modifications on the body tag, and every time I removed the breakpoints, they would be back after I refreshed. I was so confused, and I even removed all DOM breakpoints, but the phantom body subtree modification breakpoint kept coming back. Eventually, I reloaded the cache, and they disappeared.