如何在Greasemonkey脚本中以特定时间间隔加载URL?

时间:2016-06-22 01:35:58

标签: javascript firefox greasemonkey

如何每隔15分钟在Greasemonkey中加载指定的URL?问题是页面将我重定向到另一个URL。我希望每15分钟自动返回指定的网址。

1 个答案:

答案 0 :(得分:1)

我找到了答案,只需在greasemonkey中使用以下脚本,

window.setTimeout(main,10000);

function main()
{
  window.location.replace("http://google.com");
}