快速移动网页到顶部和底部

Double-click anywhere on the page to move to the top, triple-click to move to the bottom.

当前为 2023-03-08 提交的版本,查看 最新版本

您需要先安装一个扩展,例如 篡改猴Greasemonkey暴力猴,之后才能安装此脚本。

您需要先安装一个扩展,例如 篡改猴暴力猴,之后才能安装此脚本。

您需要先安装一个扩展,例如 篡改猴暴力猴,之后才能安装此脚本。

您需要先安装一个扩展,例如 篡改猴Userscripts ,之后才能安装此脚本。

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。

您需要先安装用户脚本管理器扩展后才能安装此脚本。

(我已经安装了用户脚本管理器,让我安装!)

您需要先安装一款用户样式管理器扩展,比如 Stylus,才能安装此样式。

您需要先安装一款用户样式管理器扩展,比如 Stylus,才能安装此样式。

您需要先安装一款用户样式管理器扩展,比如 Stylus,才能安装此样式。

您需要先安装一款用户样式管理器扩展后才能安装此样式。

您需要先安装一款用户样式管理器扩展后才能安装此样式。

您需要先安装一款用户样式管理器扩展后才能安装此样式。

(我已经安装了用户样式管理器,让我安装!)

// ==UserScript==
// @name         快速移动网页到顶部和底部
// @namespace    快速移动网页到顶部和底部
// @author       小斐实战公众号
// @version      1
// @description  Double-click anywhere on the page to move to the top, triple-click to move to the bottom.
// @license      AGPL License
// @match        http*://*/*
// @grant        none
// ==/UserScript==

(function() {
    // 记录最后一次点击的时间
    let lastClickTime = 0;

    // 监听鼠标点击事件
    document.addEventListener('click', function(e) {
        // 记录当前时间
        const now = Date.now();

        // 判断点击次数
        if (now - lastClickTime < 300) {
            // 双击事件
            window.scrollTo({
                top: 0,
                behavior: 'smooth'
            });
        } else if (now - lastClickTime < 600) {
            // 三击事件
            window.scrollTo({
                top: document.documentElement.scrollHeight,
                behavior: 'smooth'
            });
        }

        // 更新最后一次点击的时间
        lastClickTime = now;
    });
})();