Komica 鍵盤上下頁

Komica 網站使用鍵盤來上下頁

// ==UserScript==
// @name         Komica 鍵盤上下頁
// @version      1
// @description  Komica 網站使用鍵盤來上下頁
// @namespace    https://greasyfork.org
// @include      http://*.komica.org/*
// @include      https://*.komica.org/*
// @include      http://*.komica1.org/*
// @include      https://*.komica1.org/*
// @grant        none
// @license MIT
// @require      https://unpkg.com/hotkeys-js/dist/hotkeys.min.js
// ==/UserScript==

hotkeys('w+a,w+d,up+left,up+right', function (event, handler){
   
        switch (handler.key) {
            case 'up+left':
                document.querySelector('input[type="submit"][value="上一頁"]')?.click();
                break;
            case 'up+right':
                document.querySelector('input[type="submit"][value="下一頁"]')?.click();
                break;
            default:
        }
    });