Greasy Fork is available in English.
Free download of sounds from soundsnap.com.
Tính đến 2020-10-07 04:17:00 UTC. Xem phiên bản mới nhất.
// ==UserScript== // @name Free soundsnap.com // @name:en Free soundsnap.com // @name:ru Бесплатный soundsnap.com // @namespace tuxuuman:soundsnap // @version 0.2 // @description:en Free download of sounds from soundsnap.com. // @description:ru Бесплатная загрузка звуков с сайта soundsnap.com. // @author tuxuuman <tuxuuman@gmail.com> // @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" })); } })();