Tôi chưa quen với Greasemonkey và javascript nhưng đã tìm thấy tập lệnh bên dưới để tải lại một trang sau mỗi 5 phút.
// ==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);
Điều này hoạt động nhưng nó tải lại tất cả các tab đang mở cứ sau 5 phút và không chỉ một tab được chỉ định trong câu lệnh @include.
Có cách nào để làm điều này?