NOTICE: By continued use of this site you understand and agree to the binding Terms of Service and Privacy Policy.
// ==UserScript==
// @name Furaffinity Keyboard Navigation
// @namespace zanny
// @description Use the left / right arrow keys to navigate submissions (for the 2019 site revision).
// @version 1
// @license GPL-3.0-or-later
// @include /^https?://www\.furaffinity\.net/(view|full)//
// @icon https://www.furaffinity.net/favicon.ico
// @noframes
// ==/UserScript==
window.addEventListener('keydown', event => {
let name = document.activeElement.tagName;
if(name =='TEXTAREA' || name == 'INPUT') return;
let nav = document.getElementsByClassName('favorite-nav')[0];
if(event.key == 'ArrowLeft' && nav.firstElementChild.innerText == 'Prev') nav.firstElementChild.click();
else if(event.key == 'ArrowRight' && nav.lastElementChild.innerText == 'Next') nav.lastElementChild.click();
});