Ctrl点击滚动

连续点击加速.单击停止

// ==UserScript==
// @name          Ctrl点击滚动
// @description   连续点击加速.单击停止
// @version       1.1
// @match         *://*/*
// @namespace https://gf.qytechs.cn/users/12375
// ==/UserScript==

let scrolling = false;
    document.body.onclick = e => {
        if (scrolling = e.ctrlKey || e.metaKey) {
            e.preventDefault();
            (function fn() {
                scrolling && (window.scrollBy(0,5), requestAnimationFrame(fn));
            })();
        }
    };

QingJ © 2025

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