Reputation: 631
Is there any way I can toggle all debugger point on/off or I can bookmark all my debug points at once, in chrome.
Upvotes: 0
Views: 32
Reputation: 8386
When you Inspect Element in Chrome, in the Sources tab, to the right under the Breakpoints category, if you right-click in that area, you will find: Enable All Breakpoints Disable All Breakpoints
and a few more other options.
Upvotes: 0
Reputation: 27327
See the 'Disable breakpoints' arrow in the image on this page:
https://developer.chrome.com/devtools/docs/javascript-debugging
This will cause Chrome to skip all breakpoints in the application until the toggle is turned back to the 'ON' state.
Upvotes: 1