微信读书自动阅读

web微信读书自动阅读

// ==UserScript==
// @name         微信读书自动阅读
// @namespace    http://tampermonkey.net/
// @version      0.3
// @description  web微信读书自动阅读
// @author       mkg
// @match        *://weread.qq.com/web/reader/*
// @icon         https://rescdn.qqmail.com/node/wr/wrpage/style/images/independent/favicon/favicon_32h.png
// @grant        none
// @license MIT
// ==/UserScript==

(function() {
    'use strict';
    let currentTop = document.documentElement.scrollTop;
    var time = setInterval(()=>{
    window.scroll(0 ,++currentTop)
    },20)
    var tem_nmu = 0


    document.onclick = function(){
        if (tem_nmu%2==0)
        {
            clearInterval(time)
                ++tem_nmu

        }
        else
        {
            time = setInterval(()=>{
                window.scroll(0 ,++currentTop)
            },20)
                ++tem_nmu

        }
}
})();

QingJ © 2025

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