油猴脚本,二键滚动到页面顶部和底部
// ==UserScript==// @name 滚动到页面顶部和底部
// @namespace your-namespace
// @version 1.0
// @description使用Ctrl+上箭头滚动到页面顶部,使用Ctrl+下箭头滚动到页面底部
// @match *://*/*
// @grant none
// ==/UserScript==
(function() {
'use strict';
// 监听键盘事件
document.addEventListener('keydown', function(event) {
if (event.ctrlKey) {
if (event.keyCode === 38) { // 上箭头键
scrollToTop();
} else if (event.keyCode === 40) { // 下箭头键
scrollToBottom();
}
}
});
// 滚动到页面顶部
function scrollToTop() {
window.scrollTo({
top: 0,
behavior: 'smooth'
});
}
// 滚动到页面底部
function scrollToBottom() {
window.scrollTo({
top: document.documentElement.scrollHeight,
behavior: 'smooth'
});
}
})();
油猴地址:https://greasyfork.org/zh-CN/scripts/472628-%E6%BB%9A%E5%8A%A8%E5%88%B0%E9%A1%B5%E9%9D%A2%E9%A1%B6%E9%83%A8%E5%92%8C%E5%BA%95%E9%83%A8 使用方法: ctrl+上箭头和ctrl+下箭头;第一次发帖太紧张了忘记写使用方法了 我写了个脚本 双击左边和右边分别跳转底部和顶部 耶 键盘上的HOME和END不就能实现么? 410791007 发表于 2023-8-7 19:34
没使用说明?
ctrl+下箭头到达网页最底部,ctrl+上箭头到达网页顶部 随便写写,用处不大
没使用说明? 谢谢分享 虽然用处不大,感谢分享,吾爱有你更加精彩 谢谢分享,之前用的chrome插件鼠标操作,油猴脚本应该占用会更低 reficulx 发表于 2023-8-8 08:14
键盘上的HOME和END不就能实现么?
有道理~~~~ 这个好用,不用一直扒滚轮了 功能还不错 蛮好用的