Remove all breakpoints from chrome
breakpoints, debugging, google-chrome, google-chrome-devtools, javascript
Solution
It sounds like you've told Chrome to break on all exceptions. On the sources tab, at the bottom left, there are a series of buttons:
The one I've circled (a filled hexagon with two vertical lines in it) cycles between breaking on all exceptions, on just uncaught exceptions, and not breaking at all. Click it until it's black (not blue or purple).
For other breakpoints, they're on the right-hand side under the category "Breakpoints" (you probably knew that :-) ). Right-click and choose "Remove all breakpoints".
Problem
I had enabled some break points in Chrome's developer tools for Javascript and now I can not delete them. Any time I switch to the Developer view I always hit a breakpoint which is really annoying. Strangely enough in some cases I did not put any break point where it stops. It is a different code alltogether. How can I remove all the breakpoints?