Script Summary: Autoloads for next page of ALL PAGE. In a word, this is General Auto Pager.
Version: 0.2.2a
This is generalizing of GoogleAutoPager.
GoogleAutoPager is only for Google search result. But, this supports all sites shown by the text ( http://k75.s321.xrea.com/pagerization/siteinfo ). Google (Search, Image, News, Group, Video), Yahoo, Wikipedia, Hatena, YouTube, del.icio.us, Twitter, digg and Userscripts.org is autoloaded next page. The support site has increased MORE and MORE.
This information is delivered by network in real time.
Even if Google improves the version, users can get the best result that wait a little.
I think that it can deal with correspondence to other sites if it is possible to propose it by the comment.
The language can correspond other than English and Japanese.
Don't you make GMScript for Pagerization?
You can make the filter which is executed in every result of Pagerization with the code below.
addFilter(function (nodes) {
// your filter ...
});
function addFilter(func, i) {
i = i || 4;
if (window.Pagerization && window.Pagerization.addAction) {
window.Pagerization.addEventListener('addPage', func);
}
else if (i > 1) {
setTimeout(arguments.callee, 1000, func, i - 1);
}
else {
(function () {
func(document);
setTimeout(arguments.callee, 200);
})();
}
}


