Greasy Fork

Greasy Fork is available in English.

笔趣阁小说阅读到达底部自动翻页

笔趣阁小说阅读时,当到达底部指定秒数后自动点击下一章

目前为 2022-08-08 提交的版本,查看 最新版本

    // ==UserScript==
    // @name        笔趣阁小说阅读到达底部自动翻页
    // @namespace   [email protected]
    // @include     http://www.cits0871.com
    // @license MIT
    // @grant       no
    // @version     1.0
    // @run-at      document-end
    // @description 笔趣阁小说阅读时,当到达底部指定秒数后自动点击下一章
    // @require    http://code.jquery.com/jquery-1.11.0.min.js
    // ==/UserScript==
    
    (function () {
        
        xh()
    
        function xh(shijian){
        	setTimeout(function(){//延迟器
        	
        		if(scrollHeight > clientHeight && scrollTop + clientHeight === scrollHeight) {
        	  	 $('.bottem2').children("a").eq(2).click()
        		}
        	
        	xh();
        	},3000)
        }
        
        
        
    });