Reputation: 51
Receive an 'alert box' (not a separate pop up), where I have to click 'OK' every time I access a site
Is there any way in Firefox to disable/block it
https://i.sstatic.net/pVSNq.png
Upvotes: 1
Views: 3521
Reputation: 10713
If you don't have to reload the page you can add execute:
window.alert = function() {};
In the developer console. This will overwrite the alert
function with an empty function.
Upvotes: 1