Greasy Fork is available in English.
left and right arrow key navigation to the previous or next manga in the series
当前为
// ==UserScript==
// @name Manganelo/Mangakakalot Left/Right Arrow Key Navigation
// @author sm00nie
// @version 1.02
// @description left and right arrow key navigation to the previous or next manga in the series
// @grant none
// @include /^https?:\/\/(?:www\.)?(manganelo\.com|mangakakalot\.com)(?:.*)$/
// @namespace http://greasyfork.icu/users/165048
// ==/UserScript==
(function() {
'use strict';
document.addEventListener("keyup", function(event) {
const previous = document.querySelector('.next'),
next = document.querySelector('.back');
if (event.keyCode == 37 && previous !== null) {
previous.click()
} else if(event.keyCode == 39 && next !== null) {
next.click()
}
})
})();