NOTICE: By continued use of this site you understand and agree to the binding Terms of Service and Privacy Policy.
// ==UserScript==
// @name RoyalRoadKeyControl
// @namespace RLN
// @include http://www.royalroadl.com/fiction/chapter/*
// @version 1
// @grant none
// ==/UserScript==
$('document').ready(function () {
var linkNext = $('div.row.margin-bottom-10').children().eq(2).attr('href');
var linkPrev = $('div.row.margin-bottom-10').children().eq(0).attr('href');
$('body').keypress(function (e) {
if (e.keyCode == 39) {
window.location.href = linkNext;
} else if (e.keyCode == 37) {
window.location.href = linkPrev;
}
});
});