嗨皮漫画-方向鍵快速切換上下一話

按下[→]鍵 下一話,按下[←]鍵 上一話

当前为 2022-10-13 提交的版本,查看 最新版本

// ==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或关注我们的公众号极客氢云获取最新地址