SS Arrow Key Next/Prev Chapter

Enable next / previous chapter on right / left arrow keys on Shinsori.

Du musst eine Erweiterung wie Tampermonkey, Greasemonkey oder Violentmonkey installieren, um dieses Skript zu installieren.

You will need to install an extension such as Tampermonkey to install this script.

You will need to install an extension such as Tampermonkey or Violentmonkey to install this script.

You will need to install an extension such as Tampermonkey or Userscripts to install this script.

You will need to install an extension such as Tampermonkey to install this script.

Sie müssten eine Skript Manager Erweiterung installieren damit sie dieses Skript installieren können

(Ich habe schon ein Skript Manager, Lass mich es installieren!)

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

(I already have a user style manager, let me install it!)

// ==UserScript==
// @name         SS Arrow Key Next/Prev Chapter
// @namespace    ultrabenosaurus.Shinsori
// @version      0.2
// @description  Enable next / previous chapter on right / left arrow keys on Shinsori.
// @author       Ultrabenosaurus
// @license      GNU AGPLv3
// @source       https://greasyfork.org/en/users/437117-ultrabenosaurus?sort=name
// @match        https://www.shinsori.com/*
// @icon         https://www.google.com/s2/favicons?domain=shinsori.com
// @grant        none
// ==/UserScript==

(function() {
    'use strict';

    document.onkeyup = function(e){
        e = e || window.event;
        //console.log(e.keyCode);
        if( e.keyCode == '37' ) {
            // left arrow
            e.preventDefault();
            var pLink = document.querySelectorAll('p a.shortc-button.small.black');
            if( pLink.length == 0 ) {
                console.error("No links found for query selctor: 'p a.shortc-button.small.black'");
                return null;
            }
            if( pLink[0].textContent.search("Previous") >= 0 ) {
                console.info("Navigating to previous chapter:", pLink[0].href);
                pLink[0].click();
            } else {
                console.error("Link in position 0 did not contain text: 'Previous");
            }
            pLink = null;
        } else if( e.keyCode == '39' ) {
            // right arrow
            e.preventDefault();
            var nLink = document.querySelectorAll('p a.shortc-button.small.black');
            if( nLink.length == 0 ) {
                console.error("No links found for query selctor: 'p a.shortc-button.small.black'");
                return null;
            }
            if( nLink[1].textContent.search("Next") >= 0 ) {
                console.info("Navigating to next chapter:", nLink[1].href);
                nLink[1].click();
            } else {
                console.error("Link in position 1 did not contain text: 'Next");
            }
            nLink = null;
        }

    };
})();