How to remove all breakpoints in one step in Google Chrome?

Google ChromeGoogle Chrome-Devtools

Google Chrome Problem Overview


How to remove all breakpoints in one step in Google Chrome? Using version 11.

[update]

There is now a feature request for this.

[update]

The feature request is closed (Dec 2011)!

Google Chrome Solutions


Solution 1 - Google Chrome

This is now possible in Sources tab of Chrome Developer Tools. Please see screen grab below and right click within the "Breakpoints" section of the left window.

enter image description here

Solution 2 - Google Chrome

Since recently (Chrome 18), you can right-click any breakpoint in the Breakpoints pane and voila! The "Remove All JavaScript Breakpoints" popup menu item!

Solution 3 - Google Chrome

Chrome Devtools crashed everytime I tried to access the Sources panel because of a breakpoint on a minified Javascript file.

To remove all breakpoints without access to the interface, you can do the following:

  1. Open inspector-on-inspector : undock first inspector and hit ctrl+shift+i to open the second

  2. On the inspector-on-inspector console, execute the following:

    window.localStorage.breakpoints = [];
    
  3. Close the inspectors and reload the page. Now the breakpoints are gone.

Solution 4 - Google Chrome

Under Sources, you can click button marked with red on picture below or use shortcut Ctrl + F8 just like tool tip is showing (activate / deactivate breakpoints). A little bit lower under 'Breakpoints' you will see all your breakpoints. If you choose to disable all, they will be grayed out.

enter image description here

Solution 5 - Google Chrome

solution here.

> To purge all breakpoints open inspector on inspector (undock first > inspector and hit ctrl-shift-I to open the second) and run > "WebInspector.settings.domBreakpoints.set([])" in second inspector's > console.

Solution 6 - Google Chrome

  1. new Tabs; Ctrl+Shift+J to Console; Access URL

  2. Open the Chrome task manager and end the tab page.

  3. Ctrl+Shift+J to Application -> Service Workers (Offiline) -> Refresh

  4. to Sources Cancel Breakpoint

Success

Solution 7 - Google Chrome

Another option is to de-activate all break points using:

Ctrl + F8

Solution 8 - Google Chrome

In my case Uninstall and new installation of Chrome was without any success.

Also window.localStorage.clear() did not help.

My "last chance solution" is to remove entire directory where Chrome is storing its data. First turn off your Chrome. Then look at this path "c:\Users\ {your_user} \AppData\Local\Google\Chrome\User Data\Default\Local Storage". Here try to delete all what is in this directory.

Attributions

All content for this solution is sourced from the original question on Stackoverflow.

The content on this page is licensed under the Attribution-ShareAlike 4.0 International (CC BY-SA 4.0) license.

Content TypeOriginal AuthorOriginal Content on Stackoverflow
QuestionTony_HenrichView Question on Stackoverflow
Solution 1 - Google Chromethirumalaa srinivasView Answer on Stackoverflow
Solution 2 - Google ChromeAlexander PavlovView Answer on Stackoverflow
Solution 3 - Google ChromeLeeroy BrunView Answer on Stackoverflow
Solution 4 - Google ChromeFrenkyBView Answer on Stackoverflow
Solution 5 - Google ChromefmsfView Answer on Stackoverflow
Solution 6 - Google Chrometest666View Answer on Stackoverflow
Solution 7 - Google ChromeMwizaView Answer on Stackoverflow
Solution 8 - Google ChromeCibo FATA8View Answer on Stackoverflow