我想学习如何在 Greasemonkey 中编写脚本来修改页面中的变量或绕过延迟函数。
这是页面中间的脚本:
<script language="Javascript">
x300=100;
function countdown() {
x300--;
if (x300 == 0) {
document.getElementById('countdown').innerHTML =
'<strong>Proceed to URL - <a href="http://XXXX.com/11123324">click here</a>!</strong>';
}
if (x300 > 0) {
document.getElementById('countdown').innerHTML =
'You will be redirected in ' + x300 + ' seconds.';
setTimeout('countdown()',100000);
}
}
countdown();
</script>
当然,我想做一个将我重定向到的脚本http://XXXX.com/11123324
,我仍然是菜鸟,所以我制作的最好的脚本是:
// ==UserScript==
// @name aaa
// @include bbbb
// @grant none
// ==/UserScript==
x300=1;
countdown()
但它没有用:(