您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Free the Public Domain music library
// ==UserScript== // @name IMSLP Instant Download // @namespace http://imslp.org/ // @version 0.1 // @description Free the Public Domain music library // @match http://imslp.org/wiki/* // @require http://code.jquery.com/jquery-latest.js // @copyright 2016, dymaxion // ==/UserScript== /* jshint -W097 */ 'use strict'; var dl_link=$("span[id$='sm_dl_wait']").attr("data-id"); if (dl_link) { $("span[id$='sm_dl_wait']").replaceWith("<a style='font-weight:bold;font-size: large;line-height: 60px;color: green;' id='free-the-music' href='" + dl_link +"'>Liberate Public Domain music! - Instant Download</a>"); }