Free Sound Snap

Free download from soundsnap.com

您需要先安裝使用者腳本管理器擴展,如 TampermonkeyGreasemonkeyViolentmonkey 之後才能安裝該腳本。

You will need to install an extension such as Tampermonkey to install this script.

您需要先安裝使用者腳本管理器擴充功能,如 TampermonkeyViolentmonkey 後才能安裝該腳本。

您需要先安裝使用者腳本管理器擴充功能,如 TampermonkeyUserscripts 後才能安裝該腳本。

你需要先安裝一款使用者腳本管理器擴展,比如 Tampermonkey,才能安裝此腳本

您需要先安裝使用者腳本管理器擴充功能後才能安裝該腳本。

(我已經安裝了使用者腳本管理器,讓我安裝!)

你需要先安裝一款使用者樣式管理器擴展,比如 Stylus,才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展,比如 Stylus,才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展,比如 Stylus,才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展後才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展後才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展後才能安裝此樣式

(我已經安裝了使用者樣式管理器,讓我安裝!)

// ==UserScript==
// @name         Free Sound Snap
// @name      Free soundsnap.com
// @name:ru      Бесплатный soundsnap.com
// @namespace    FreeSoundSnap
// @version      0.3
// @icon        https://index.tnwcdn.com/images/2d2e82ceac6513cb8130834a8862e2aeae30cca5.jpg
// @icon64      https://index.tnwcdn.com/images/2d2e82ceac6513cb8130834a8862e2aeae30cca5.jpg
// @description  Free download from soundsnap.com
// @description:ru  Бесплатная загрузка с сайта soundsnap.com
// @author       Wladek prod.
// @match        *://www.soundsnap.com/*
// @grant        none
// @run-at document-body
// @description Free download from soundsnap.com
// ==/UserScript==
	
var elements = document.getElementsByClassName("ojoo-button");
for( var i = 0; i < wavesurfer.length; i++ )
{
  var idwave = i;
  if (wavesurfer[idwave] === undefined) continue;
  var downlink = wavesurfer[idwave].backend.song;
  var colorArray2 = document.body.getElementsByClassName("audio-download");
  var innerHtml = "";
  innerHtml += '<a href="'+downlink+'" class="si_buttons si_download mp3-download">free mp3</a>';
  var node = document.querySelector('#node-' + idwave + ' > div > div > div:nth-child(1) > div.audio-download');
  node.innerHTML = innerHtml;
}