Motherless gallery keyboard navigation

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

2015-06-14 يوللانغان نەشرى. ئەڭ يېڭى نەشرىنى كۆرۈش.

// ==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
// @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') {
  document.body.addEventListener('keydown', function (e) {
    if ((e.key == 'ArrowRight' || e.key == 'd') && nextUrl != 'http://motherless.comundefined') {
      document.location.href = nextUrl;
    } else if ((e.key == 'ArrowLeft' || e.key == 'a') && prevUrl != 'http://motherless.comundefined') {
      document.location.href = prevUrl;
    }
  });
}