No wait download - imslp.org

no wait when downloading

目前为 2021-08-08 提交的版本,查看 最新版本

// ==UserScript==
// @name        No wait download - imslp.org
// @namespace   Violentmonkey Scripts
// @match       https://imslp.org/*
// @grant       none
// @version     1.0
// @author      someone
// @description no wait when downloading
// ==/UserScript==



var value1 = document.getElementById("sm_dl_wait").outerHTML;

var value = value1.substring(
    value1.lastIndexOf("data-id") + 9, 
    value1.lastIndexOf('\">')
);


window.open(value, '_blank');