turbo next page

press space to go to next page

目前为 2023-04-09 提交的版本。查看 最新版本

// ==UserScript==
// @name         turbo next page
// @license      MIT
// @namespace    http://tampermonkey.net/
// @version      0.1
// @description  press space to go to next page
// @author       You
// @match        *://*.websight.blue/thread/*
// @icon         https://www.google.com/s2/favicons?sz=64&domain=websight.blue
// @grant        none
// ==/UserScript==

(function() {
    'use strict';
    document.addEventListener('keydown', function(e) {
        const readMore = document.getElementById("nextpage");
        const visibleButton = readMore.style.display != "none";
        const isPosting = document.activeElement.tagName == "TEXTAREA";
        if (e.key == ' ' && visibleButton && !isPosting) {
           readMore.click();
        }
    });

})();

QingJ © 2025

镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址