![]() ![]() |
i have been having rouble getting alert blocker scripts to work with the newer version of firefox. this is the one i am currently using. it doesn't work. i still get alerts. been like this since version 11.0. now on 13.0. is there a setting i should change? do you know why this doesn't work? i saw something called userprefs. but not sure how to change that // ==UserScript==
var alert_script = document.createElement("script");
|
![]() ![]() |
Would adding: @run-at document-start
|
![]() ![]() |
Could you change this: alert_script.innerHTML = "function alert(m) {}";
to this: myScriptContent = "function alert(m) {}";
alert_script.appendChild(document.createTextNode(myScriptContent));
|

