// ==UserScript== // @name 平滑滚动翻页 // @namespace http://tampermonkey.net/ // @version 1.0 // @description 使用w和s键进行平滑滚动翻页。 // @author coccvo // @match https://www.qidian.com/* // @grant none // @license MIT // @downloadURL none // ==/UserScript== (function() { 'use strict'; // 页面加载完毕后执行 window.addEventListener('load', function() { // 获取视窗高度 let viewportHeight = window.innerHeight; // 定义每次滚动的距离为视窗高度的0.9倍 let scrollDistance = viewportHeight * 0.9; // 监听按键事件 document.addEventListener('keydown', function(event) { if (event.key === 'w') { // 按下w键向上滚动 window.scrollBy({ top: -scrollDistance, left: 0, behavior: 'smooth' }); } else if (event.key === 's') { // 按下s键向下滚动 window.scrollBy({ top: scrollDistance, left: 0, behavior: 'smooth' }); } }); }); })();