Jestem nowy w Greasemonkey i javascript, ale znalazłem poniższy skrypt, aby przeładowywać stronę co 5 minut.
// ==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);
Działa to, ale co 5 minut ponownie ładuje wszystkie otwarte karty, a nie tylko tę określoną w instrukcji @include.
Czy jest na to jakiś sposób?