我是Greasemonkey和javascript的新手,但发现下面的脚本每5分钟重新加载一次页面。
// ==UserScript==
// @name Auto Reload Protopage
// @namespace http://blog.monstuff.com/archives/cat_greasemonkey.html
// @description Reload pages every 5 minutes
// @include http://ww.bbc.co.uk
// @grant none
// ==/UserScript==
// based on code by Julien Couvreur
// and included here with his gracious permission
var numMinutes = 5;
window.setTimeout("document.location.reload();", numMinutes*60*1000);
此方法有效,但是每5分钟重新加载所有打开的选项卡,而不仅仅是@include语句中指定的选项卡。
有什么办法吗?
http://ww.bbc.co.uk不存在?
—
Laoujin 2012年
抱歉-这只是一个错字
—
-Neil Spencer