How do I tell Firefox not to stop if it sees a debugger keyword?
debugger
I need to avoid a continuous debugger loop in case the website uses debugg
if you use Greasemonkey you can rewrite setTimeout/setInterval function to disable the script
setTimeout/setInterval
unsafeWindow.setTimeout = function () {};