Greasy Fork is available in English.
Download SoundCloud tracks as mp3!
当前为
// ==UserScript==
// @name SoundCloud Download Button Generator
// @namespace SCDL
// @version 1.0
// @description Download SoundCloud tracks as mp3!
// @author Kıraç Armağan Önal
// @match https://soundcloud.com/*
// @match https://soundcloud.com/*/*
// @match https://soundcloud.com/*/*/*
// @match https://soundcloud.com/*/*/*/*
// @grant unsafeWindow
// ==/UserScript==
(function() {
"use strict";
var OPTIONS = {
autodownload: true,
autoplay: false
}
function createElementByHTML(html) {
var divElm = document.createElement("div");
divElm.innerHTML = html;
return divElm.firstElementChild;
};
document.addEventListener("DOMContentLoaded", function(event) {
setInterval(function(){
if (!document.querySelector("#scdl-download-btn")) {
var button_list = document.getElementsByClassName("sc-button-group sc-button-group-medium")[0];
button_list.appendChild(createElementByHTML(`<a id="scdl-download-btn" title="Download with SCDL!" href="https://soundcloud-dl.glitch.me/?autoplay=${OPTIONS.autoplay}&autodownload=${OPTIONS.autodownload}&url=${window.location.href}"> <button class=" sc-button" alt="Download with SCDL">⬇ Download ⬇</button></a>`));
}
},5000)
})
})();