コードの先頭にある配列に含まれるページを順番にロードする Greasemonkey スクリプト (別のコーダーである Brock Adams によって作成された) があります。 ページのリストを自動的に順番に開く方法は?
// ==UserScript==
// @name Multipage, MultiSite slideshow of sorts
// @include http://google.com/*
// @include http://site2/*
// @include http://site3/*
// @include http://site4/*
// @grant GM_addStyle
// ==/UserScript==
/*- The @grant directive is needed to work around a major design
change introduced in GM 1.0.
It restores the sandbox.
*/
var urlsToLoad = [
'http://google.com/'
, 'http://site2/somepage/'
, 'http://site3/somepage/'
, 'http://site4/somepage/'
];
/*--- Since many of these sites load large pictures, Chrome's and
Firefox's injection may fire a good deal before the image(s)
finish loading.
So, insure script fires after load:
*/
window.addEventListener ("load", FireTimer, false);
if (document.readyState == "complete") {
FireTimer ();
}
//--- Catch new pages loaded by WELL BEHAVED ajax.
window.addEventListener ("hashchange", FireTimer, false);
function FireTimer () {
setTimeout (GotoNextURL, 5000); // 5000 == 5 seconds
}
function GotoNextURL () {
var numUrls = urlsToLoad.length;
var urlIdx = urlsToLoad.indexOf (location.href);
urlIdx++;
if (urlIdx >= numUrls)
urlIdx = 0;
location.href = urlsToLoad[urlIdx];
}
問題は、同じ Web サイトの 2 つのページを順番にロードする場合に発生します。ページのロードを高速化するために Web サイトが AJAX を使用しているため、スクリプトが機能しなくなります。
このスクリプトでページを完全にリロードするにはどうすればよいですか?
ご覧のとおり、彼はすでに次のことを試しました。
//--- Catch new pages loaded by WELL BEHAVED ajax.
window.addEventListener ("hashchange", FireTimer, false);
この問題を解決するには、期待どおりに動作しません。
特に、この問題が発生するサイトは、ink361.com です。彼のソースの例の jsFiddle を作成しました: http://jsfiddle.net/XjjfK/
前もって感謝します。