Can I tell the Chrome script debugger to ignore jquery.js?

后端 未结 6 769
一向
一向 2020-12-13 23:03

Is there a way to tell the Chrome debugger (or maybe Firebug?) to not break within certain files? To assume they\'re not broken, essentially? This seems like something they

6条回答
  •  囚心锁ツ
    2020-12-13 23:39

    The latest version of Chrome has implemented a new blackbox feature that does exactly what you are looking for. Basically, when you set the blackbox option on a given file, it will prevent Chrome debugger from breaking into that file.

    This feature is built-in and it can be set with the context menu of the file (right click). It will also work if Chrome debugger is set for stopping on all exceptions.

提交回复
热议问题