Greasy Fork

来自缓存

花瓣网自动向下滚动

自动向下滚动 每次1000像素距离

// ==UserScript==
// @name         花瓣网自动向下滚动
// @namespace    https://www.gofortime.com/
// @version      0.1
// @description  自动向下滚动 每次1000像素距离
// @author       寒隙
// @match        https://huaban.com/discovery
// @match        https://huaban.com/follow
// @match        https://huaban.com/search
// @icon         https://huaban.com/img/touch-icon-iphone-retina.png
// @grant        none
// @license MIT
// ==/UserScript==

(function() {
    var t = setInterval(function(){
        var hei = document.documentElement.scrollTop;
        document.documentElement.scrollTop = hei + 1000;
    },6000)
})();