Discussions » Creation Requests

Rewriting the global alert() function doesn't work in Tampermonkey

§
Posted: 2014-07-23

Rewriting the global alert() function doesn't work in Tampermonkey

In Greasemonkey I can rewrite the global alert() function with:

window.alert = function() {}

and it works anywhere.
But, in Tampermonkey (Chrome), it only works on it's own script.

Why? And could I make it work globally?

§
Posted: 2014-08-04

Hi,

You must use unsafeWindow.alert = function () {};

Regards
Reek

§
Posted: 2014-08-08

Hi

Thanks but that didn't work can you advertise that you can test for open this site

http://fireie.ir/

§
Posted: 2014-08-08

Hi,

that contains the alert that you want to replace, and what you want to inject code instead

§
Posted: 2014-08-08

try

unsafeWindow.alert = function(){return false};
window.alert = function(){return false};
Window.prototype.alert = function(){return false};

§
Posted: 2014-08-08

Thanks but that didn't work

// ==UserScript==
// @name Block
// @namespace
// @description
// @include *
// ==/UserScript==

unsafeWindow.alert = function(){return false};
window.alert = function(){return false};
Window.prototype.alert = function(){return false};

§
Posted: 2014-08-08

Sorry I see no other solution :(

§
Posted: 2014-08-08

Hi,

Try this


// ==UserScript==
// @name Stop Alert Box
// @namespace stopalertbox
// @version 1.0
// @description Stop Alert Box
// @match http://*/*
// @copyright 2014+, Reek
// @run-at document-start
// ==/UserScript==


unsafeWindow.alert = function(){return false};
window.alert = function(){return false};
Window.prototype.alert = function(){return false};


Regards
Reek

§
Posted: 2014-08-11

try with
// @grant unsafeWindow

§
Posted: 2015-01-07

Hi there

The code does not work

Please help

sample :
rarepic.ir

woxxomMod
§
Posted: 2015-01-08

Maybe Chrome doesn't allow redefining it.

§
Posted: 2015-01-08

If your @grant is none, use window.alert = null, otherwise use unsafeWindow.alert = null;.

// ==UserScript==
// @name         Disable alert
// @namespace    org.gf.860
// @version      0.1
// @description  Disable window.alert 
// @author       You
// @include      *
// @run-at       document-start
// @grant        none
// ==/UserScript==

window.alert = null;

Test case: http://jsfiddle.net/JixunMoe/tvnnuqq5/

§
Posted: 2015-01-27

Hi there

But unfortunately did not open

Demo

http://zigzig.ir/book/

Post reply

Sign in to post a reply.