连续点击加速.单击停止
// ==UserScript==
// @name Ctrl点击滚动
// @description 连续点击加速.单击停止
// @version 1.1
// @match *://*/*
// @namespace https://greasyfork.org/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));
})();
}
};