// ==UserScript== // @name 微信书架滚动 // @namespace http://tampermonkey.net/ // @version 0.1 // @description 自动滚动微信书架 // @author luo.lun@foxmail.com // @match https://weread.qq.com/web/shelf // @icon data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw== // @grant none // @license MIT // @downloadURL none // ==/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) } })();