// ==UserScript== // @name NGA Auto Pager // @version 1.001 // @description NGA自动翻页 // @include /^http:\/\/(bbs\.ngacn\.cc|nga\.178\.com|bbs\.nga\.cn|bbs\.bigccq\.cn)\/(read\.php|thread\.php)/ // @author wpscott // @namespace https://greasyfork.org/users/54591 // @downloadURL none // ==/UserScript== var x = setInterval(function() { if(document.body.scrollHeight - document.body.scrollTop < 2000){ var c = false; var x = document.getElementsByClassName('uitxt1'); for (var i = 0; i < x.length; i++) { if (x[i].title === "加载下一页") { x[i].click(); c = true; } } if (!c) clearInterval(x); } }, 500);