AutoPager

⭐Append the next page content to the bottom seamlessly (like a waterfall, Unlimited scrolling, no need to manually click on the next page) ⭐, support various forums, social networking, games, comics, novels, academics, search engines (Google, Bing, Yahoo...) and other websites~

< Feedback on AutoPager

Question/comment

X.I.UAuthor
§
Posted: 2025.01.12.

复制粘贴到脚本 自定义翻页规则 默认的 { } 中间保存(浏览器右上角 Tampermonkey 扩展图标内的脚本菜单)

    "archivebate": {
        "host": "archivebate.com",
        "url": "/^\\/((\\?.+)?$|platform\\/|gender\\/)/",
        "blank": 3,
        "pager": {
            "type": 6,
            "nextL": "li.active+li>a",
            "pageE": ".video_item",
            "replaceE": ".pagination",
            "loadTime": 2000,
            "scrollD": 3000
        }
    }

该网站是动态加载内容,但因为有具体的页码地址链接,所以可以用模式 6 来实现,但缺点是自动翻页速度慢(需要等后台动态加载完成才行),规则中的 loadTime 就是大概等待加载时间(毫秒),我这边测试 1500~2000 是一个较为平衡的点(设置太长就太慢了,设置太短就容易遇到没加载完成就被脚本插入当前网页底部了,这个网站的话就会表现显示为一个个加载中的黑色方块,你可以根据你访问该网站的速度来适当调整提高自己的使用体验)。

Post reply

Sign in to post a reply.