您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
按下[→]鍵 下一話,按下[←]鍵 上一話
当前为
// ==UserScript== // @name 嗨皮漫画-方向鍵快速切換上下一話 // @name:zh 嗨皮漫画-方向鍵快速切換上下一話 // @name:en Happymh comic - Arrow Key Next/Prev Chapter // @namespace 9nice // @version 0.1.1 // @description 按下[→]鍵 下一話,按下[←]鍵 上一話 // @description:zh 按下[→]鍵 下一話,按下[←]鍵 上一話 // @description:en next / previous chapter on right / left arrow keys // @author 9nice // @match *://m.happymh.com/reads/* // @grant none // @noframes // @supportURL none // @license MadeInTaiwan // ==/UserScript== (function () { "use strict"; document.onkeydown = function (e) { var eri = document.querySelector(".jss69"); if (!eri) { return; } else { var linkr = eri.children[0].href; } var elf = document.querySelector(".jss70"); if (!elf) { return; } else { var linkl = elf.children[0].href; } var keyNum = window.event ? e.keyCode : e.which; if (keyNum == 39) { if (linkr) { window.location.href = linkr; } else { alert("No Match!"); } } if (keyNum == 37) { if (linkl) { window.location.href = linkl; } else { alert("No Match!"); } } }; })();
QingJ © 2025
镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址