Is it possible to ignore certain javascript files when debugging with breakpoints in Chrome Developer Tools? Let's say on this website http://todomvc.com/architecture-examples/angularjs/#/ I want to debug only todoCtrl.js and ignore all other ones like angular.js.
-
2I'm upvoting this as hard as I canuser1228– user12282016-07-13 18:15:43 +00:00Commented Jul 13, 2016 at 18:15
-
It seems like they removed it. You need to enter the scripts manually in the settings. It used to work by right clicking on the script and ignore itBlack– Black2022-09-13 10:36:46 +00:00Commented Sep 13, 2022 at 10:36
-
developer.chrome.com/docs/devtools/settings/ignore-listBergi– Bergi2024-03-02 19:12:12 +00:00Commented Mar 2, 2024 at 19:12
Add a comment
|
1 Answer
Yes, you can use JS Blackboxing to do this. The documentation for this feature will be going live soon, but for now you can read the WIP doc on how to do this here:
https://rawgit.com/jaredwilli/devtools-docs/blackboxing/docs/blackboxing.html
3 Comments
ruffin
Updated link for Blackboxing from developers.google.com (click the first link in this comment, not the second)
Daniel Thompson
am I the only one who thinks whitelisting would make a lot more sense?
JackChouMine
how to ignore event the third script emitted? currently web ignore script only for step into next, not for event .