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와 같은 확장 프로그램이 필요합니다.

이 스크립트를 설치하려면 Tampermonkey와 같은 확장 프로그램이 필요합니다.

이 스크립트를 설치하려면 유저 스크립트 관리자 확장 프로그램이 필요합니다.

(이미 유저 스크립트 관리자가 설치되어 있습니다. 설치를 진행합니다!)

이 스타일을 설치하려면 Stylus와 같은 확장 프로그램이 필요합니다.

이 스타일을 설치하려면 Stylus와 같은 확장 프로그램이 필요합니다.

이 스타일을 설치하려면 Stylus와 같은 확장 프로그램이 필요합니다.

이 스타일을 설치하려면 유저 스타일 관리자 확장 프로그램이 필요합니다.

이 스타일을 설치하려면 유저 스타일 관리자 확장 프로그램이 필요합니다.

이 스타일을 설치하려면 유저 스타일 관리자 확장 프로그램이 필요합니다.

(이미 유저 스타일 관리자가 설치되어 있습니다. 설치를 진행합니다!)

// ==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;
    }
  });
}