Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Remove all breakpoints from chrome

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?

like image 251
Jim Avatar asked Aug 06 '13 06:08

Jim


People also ask

How do you clear all break points?

To clear all breakpoints in the applicationFrom the Debug menu, choose Clear All Breakpoints (CTRL+SHIFT+F9).

How do I remove all breakpoints in browser console?

Right click the breakpoints pane (you need to have some breakpoints to see the option), and you ll find, "Remove All Breakpoints".

How do you check breakpoints in Chrome?

Using DevTools for DOM BreakpointsRight-click on the element. Select Inspect (Elements tab will open with the selected element highlighted). Right-click the highlighted HTML. Go to Break on and select the type of breakpoint.


2 Answers

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:

Screenshot of Chrome's bottom-left tools with break-on-exceptions button circled

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".

like image 77
T.J. Crowder Avatar answered Sep 25 '22 10:09

T.J. Crowder


enter image description hereenter image description here

You can activate/deactivate breakpoints with ctrl-F8 (Chrome version 49) There is a:

        "deactivate  / activate"

crossed over black arrow / blue arrow

above the watch pane, There is a list of breakpoints below

Watch, Call stack, Scope where you can activate/deactivate breakpoints individually

enter image description here

Right click in this list, and you can remove all breakpoints.

like image 21
oleviolin Avatar answered Sep 23 '22 10:09

oleviolin