您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Free download of sounds from soundsnap.com.
// ==UserScript== // @name Free soundsnap.com // @name:en Free soundsnap.com // @name:ru Бесплатный soundsnap.com // @namespace tuxuuman:soundsnap // @version 0.2.1 // @description:en Free download of sounds from soundsnap.com. // @description:ru Бесплатная загрузка звуков с сайта soundsnap.com. // @author tuxuuman <[email protected]> // @match *://www.soundsnap.com/* // @grant none // @run-at document-body // @description Free download of sounds from soundsnap.com. // ==/UserScript== (function() { var createBackend = WaveSurfer.prototype.createBackend; WaveSurfer.prototype.createBackend = function() { createBackend.apply(this, arguments); var self = this; jQuery(self.container) .parents('.ojoo-audio') .find('.audio-download') .css('width', '300px') .append(jQuery('<span></span>', { title: "free download ^^", "class": "si_buttons si_download", click: function() { location.href = self.backend.song; }, text: "Free", css: { "margin-top": "3px", "border-radius": "4px" } })); } })();