skip waiting time on imslp.org
// ==UserScript==
// @name imslp.org wait skipper
// @namespace https://greasyfork.org/en/users/184736-teymyro
// @version 0.1
// @description skip waiting time on imslp.org
// @author t3Y
// @match https://imslp.org/*
// @grant none
// ==/UserScript==
(function() {
'use strict';
try {
var link = document.getElementById("sm_dl_wait").attributes["data-id"].value
location.href = link;
} catch (e) {}
})();