Firefox - Disable 'debugger' keywords

后端 未结 4 730
滥情空心
滥情空心 2020-12-29 06:57

How do I tell Firefox not to stop if it sees a debugger keyword?

I need to avoid a continuous debugger loop in case the website uses debugg

4条回答
  •  情话喂你
    2020-12-29 07:40

    if you use Greasemonkey you can rewrite setTimeout/setInterval function to disable the script

    unsafeWindow.setTimeout = function () {};
    

提交回复
热议问题