在网站上有类似的代码(其网站上的网站)
<script language="JavaScript" type="text/javascript">
alert("ble");
</script>
我尝试使用GM禁用该警报。我试图这样做
unsafeWindow.alert=function() {};
但我看到警告并收到此错误
Error: uncaught exception: [Exception... "Component is not available" nsresult: "0x80040111 (NS_ERROR_NOT_AVAILABLE)" location: "JS frame :: file:///C:/Documents%20and%20Settings/arokitnicki/Dane%20aplikacji/Mozilla/Firefox/Profiles/sm4bsods.default/extensions/%7Be4a8a97b-f2ed-450b-b12d-ee082ba24781%7D/components/greasemonkey.js :: anonymous :: line 377" data: no]
如何禁用该警报?
P.S。这是不是javascript 问题,而是 Greasemonkey 问题。
修改
其公司的网站,所以我无法粘贴真实的代码
<head>
<script>
dojo.require("dojo.back");
dojo.back.init();
</script>
</head>
<body onload="someMethod()">
<iframe></iframe>
<script>
alert("bla");
</script>
</body>
标题中还有一些脚本和CSS声明。
答案 0 :(得分:6)
更新:对于现代版本的Tampermonkey,Violentmonkey,Greasemonkey (但强烈建议避免使用GM 4 +) :
在大多数情况下,您可以使用alert()
拦截@run-at document-start
。例如,加载此脚本,然后访问the test page:
// ==UserScript==
// @name _Overwrite Alert
// @match *://output.jsbin.com/*
// @grant none
// @run-at document-start
// ==/UserScript==
var alrtScope;
if (typeof unsafeWindow === "undefined") {
alrtScope = window;
} else {
alrtScope = unsafeWindow;
}
alrtScope.alert = function (str) {
console.log ("Greasemonkey intercepted alert: ", str);
};
请注意,如果您正在运行Tampermonkey ,则可以通过切换到Inject Mode: Instant
更有效地阻止警报:
Tampermonkey设置 =&gt; 配置模式: Advanced
=&gt; 实验 =&gt; 注入模式: Instant
。
如果您的脚本需要GM_函数,则必须设置@grant
以外的其他功能。在这种情况下,请使用exportFunction()
,如下所示:
// ==UserScript==
// @name _Overwrite Alert
// @match *://output.jsbin.com/*
// @grant GM_addStyle
// @run-at document-start
// ==/UserScript==
function myAlert (str) {
console.log ("Greasemonkey intercepted alert: ", str);
}
unsafeWindow.alert = exportFunction (myAlert, unsafeWindow);
unsafeWindow.alert=function() {};
在特定情况下运行良好。
但是,如果这确实是页面上的代码,那么您将无法使用Greasemonkey停止该警报。
这是因为该警报将在页面加载期间和DOMContentLoaded
事件之前触发 - 即Greasemonkey被触发时。
加载此GM脚本:
// ==UserScript==
// @name Overwrite Alert
// @description Overwrites alert()
// @include http://jsbin.com/*
// ==/UserScript==
unsafeWindow.alert=function() {};
然后访问:http://jsbin.com/ajeqe4/6。
检查代码(http://jsbin.com/ajeqe4/6/edit),您将看到3个警报。 Greasemonkey只能停止load
(通常)发出的警报。
其他因素可能阻止GM停止警报的能力......页面加载速度过快或关闭,或许。
粘贴该页面的来源,如果可能的话,未经编辑,在pastebin.com上。您可以做其他事情。也许通过adblock阻止脚本?
否则,你必须写一个扩展名/附加组件。
答案 1 :(得分:3)
如果您使用Scriptish,则以下内容始终有效:
// ==UserScript==
// @id alert-killer-test@erikvold.com
// @name Overwrite Alert
// @description Overwrites alert()
// @include *
// @run-at document-start
// ==/UserScript==
unsafeWindow.alert=function() {};