标签: javascript firefox greasemonkey
如何每隔15分钟在Greasemonkey中加载指定的URL?问题是页面将我重定向到另一个URL。我希望每15分钟自动返回指定的网址。
答案 0 :(得分:1)
我找到了答案,只需在greasemonkey中使用以下脚本,
window.setTimeout(main,10000); function main() { window.location.replace("http://google.com"); }