Motherless gallery keyboard navigation

Increases productivity when you're not being productive. Supports left and right handed browsing (arrow keys or A and D)

θα χρειαστεί να εγκαταστήσετε μια επέκταση όπως το Tampermonkey, το Greasemonkey ή το Violentmonkey για να εγκαταστήσετε αυτόν τον κώδικα.

θα χρειαστεί να εγκαταστήσετε μια επέκταση όπως το Tampermonkey ή το Violentmonkey για να εγκαταστήσετε αυτόν τον κώδικα.

θα χρειαστεί να εγκαταστήσετε μια επέκταση όπως το Tampermonkey ή το Violentmonkey για να εγκαταστήσετε αυτόν τον κώδικα.

θα χρειαστεί να εγκαταστήσετε μια επέκταση όπως το Tampermonkey ή το Userscripts για να εγκαταστήσετε αυτόν τον κώδικα.

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

Θα χρειαστεί να εγκαταστήσετε μια επέκταση διαχείρισης κώδικα χρήστη για να εγκαταστήσετε αυτόν τον κώδικα.

(Έχω ήδη έναν διαχειριστή κώδικα χρήστη, επιτρέψτε μου να τον εγκαταστήσω!)

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.

(Έχω ήδη έναν διαχειριστή στυλ χρήστη, επιτρέψτε μου να τον εγκαταστήσω!)

// ==UserScript==
// @name        Motherless gallery keyboard navigation
// @namespace   niceme.me
// @description Increases productivity when you're not being productive. Supports left and right handed browsing (arrow keys or A and D)
// @include     http://motherless.com/*
// @version     1.1
// @grant       none
// ==/UserScript==
if ($('.previous-link').attr('href') != 'undefined') {
  prevUrl = 'http://motherless.com' + $('.previous-link').attr('href');
  nextUrl = 'http://motherless.com' + $('.next-link').attr('href');
}

if (prevUrl != 'http://motherless.comundefined' || nextUrl != 'http://motherless.comundefined') {
  window.addEventListener('keydown', function (e) {
    if (((e.key == 'ArrowRight' || e.key == 'd') ||  // Firefox
         (e.keyCode == 39 || e.keyCode == 68)) && // Chrome
         nextUrl != 'http://motherless.comundefined') {
        document.location.href = nextUrl;
    } else if (((e.key == 'ArrowLeft' || e.key == 'a') || // Firefox
               (e.keyCode == 37 || e.keyCode == 65)) // Chrome
               && prevUrl != 'http://motherless.comundefined') {
      document.location.href = prevUrl;
    }
  });
}