2024 / 6 / 26
// ==UserScript== // @name 自动滚动 // @namespace http://tampermonkey.net/ // @version 4.7.1 // @description 通过 match 设置匹配的网站,按上下箭头调节滚动的速度,按回车键暂停滚动 // @author Your Name // @match *://x.com/* // @match https://weread.qq.com/* // @grant none // ==/UserScript== (function() { 'use strict'; let scrollInterval; let scrollSpeed = 0.7; // 默认滚动速度 const speedStep = 0.5; // 每次按键调整的速度增量 function startScrolling() { if (!scrollInterval) { scrollInterval = setInterval(() => { window.scrollBy(0, scrollSpeed); }, 10); // 调整此数值以改变滚动的平滑度 } } function stopScrolling() { if (scrollInterval) { clearInterval(scrollInterval); scrollInterval = null; } } document.addEventListener('keydown', function(e) { if (e.key === 'ArrowDown') { scrollSpeed += speedStep; // 增加滚动速度 startScrolling(); } else if (e.key === 'ArrowUp') { scrollSpeed = Math.max(0, scrollSpeed - speedStep); // 减少滚动速度,但不低于0 startScrolling(); } else if (e.key === 'Enter') { stopScrolling(); // 暂停滚动 } }); })();