2
JavaScriptとGreasemonkeyを使用してFirefoxの1つのタブのみをリロードしますか?
私はGreasemonkeyとJavaScriptを初めて使用しますが、5分ごとにページをリロードする以下のスクリプトを見つけました。 // ==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); これは機能しますが、@ includeステートメントで指定されたタブだけでなく、開いているすべてのタブが5分ごとに再ロードされます。 これを行う方法はありますか?