// ==UserScript== // @name Next, Previous, and play/pause key shortcuts for bandcamp // @description Allows the left and right keyboard arrows to be used to go to the previous and next songs on bandcamp. // @author Zach Saucier // @namespace https://zachsaucier.com/ // @version 1.1 // @match https://bandcamp.com/* // @match https://*.bandcamp.com/* // @downloadURL none // ==/UserScript== (function() { 'use strict'; window.addEventListener('keydown', (event) => { console.log(event.code); switch(event.code) { case 'ArrowLeft': document.querySelector('.prev-icon').click(); break; case 'ArrowRight': document.querySelector('.next-icon').click(); break; case 'Space': document.querySelector('.playpause').click(); event.preventDefault(); break; } }, false); })();