Reputation: 483
How do I load a specified URL in Greasemonkey, every 15 minutes? The problem is that a page redirects me to another URL. I want to automatically return to my specified URL every 15 minutes.
Upvotes: 2
Views: 591
Reputation: 483
I found the answer, just use the following script in greasemonkey,
window.setTimeout(main,10000);
function main()
{
window.location.replace("http://google.com");
}
Upvotes: 2