Next and Previous key shortcuts for Spotify

Allows the left and right keyboard arrows to be used to go to the previous and next songs on Spotify.

Per 02-12-2018. Zie de nieuwste versie.

// ==UserScript==
// @name         Next and Previous key shortcuts for Spotify
// @description  Allows the left and right keyboard arrows to be used to go to the previous and next songs on Spotify.
// @author       Zach Saucier
// @namespace    https://zachsaucier.com/
// @version      1.0
// @match        https://open.spotify.com/*
// ==/UserScript==

(function() {
    'use strict';

    let previous = document.querySelector('.spoticon-skip-back-16'),
            next = document.querySelector('.spoticon-skip-forward-16');

    window.addEventListener('keydown', (event) => {
        switch(event.code) {
            case 'ArrowLeft':
                previous.click();
                break;
            case 'ArrowRight':
                next.click();
                break;
        }
    }, false);
})();