禁漫天堂-方向鍵快速切換上下一話

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

Stan na 14-10-2022. Zobacz najnowsza wersja.

// ==UserScript==
// @name         禁漫天堂-方向鍵快速切換上下一話
// @name:zh-TW   禁漫天堂-方向鍵快速切換上下一話
// @name:zh-CN   禁漫天堂-方向键快速切换上下一话
// @name:en      18comic - Arrow Key Next/Prev Chapter
// @namespace    9nice
// @version      0.1.2
// @description        按下[→]鍵 下一話,按下[←]鍵 上一話
// @description:zh-TW  按下[→]鍵 下一話,按下[←]鍵 上一話
// @description:zh-CN  按下[→]键 下一话,按下[←]键 上一话
// @description:en     next / previous chapter on right / left arrow keys
// @author       9nice
// @match        *://18comic.vip/photo/*
// @match        *://18comic.org/photo/*

// @grant        none
// @noframes
// @supportURL   none
// @license      MadeInTaiwan
// ==/UserScript==

(function () {
  "use strict";
  document.onkeydown = function (e) {
    var eri = document.querySelector(".menu-bolock-ul > li:nth-of-type(8)");
    if (!eri) { return; }

    else { var linkr = eri.children[0].href; }
    var elf = document.querySelector(".menu-bolock-ul > li:nth-of-type(9)");
    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!"); }
    }
  };
})();