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