微信书架滚动

自动滚动微信书架

// ==UserScript==
// @name         微信书架滚动
// @namespace    http://tampermonkey.net/
// @version      0.11
// @description  自动滚动微信书架
// @author       [email protected]
// @match        https://weread.qq.com/web/shelf
// @icon         data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw==
// @grant        none
// @license MIT
// ==/UserScript==

(function() {
    'use strict';

    var interval;
    var oldTop;
    var busy = false;

    if (window.location.href == "https://weread.qq.com/web/shelf") {
        interval = setInterval(function() {
            if (busy) return;
            busy = true;

            if (oldTop == document.documentElement.scrollTop) {
                document.documentElement.scrollTop = 0;
            }

            oldTop = document.documentElement.scrollTop;
            document.documentElement.scrollTop++;

            busy = false;
        }, 20)
    }
})();

QingJ © 2025

镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址