Skip to content

Instantly share code, notes, and snippets.

@Scrxtchy
Created October 17, 2015 15:50
Show Gist options
  • Save Scrxtchy/9eee4b4839cea545d2c6 to your computer and use it in GitHub Desktop.
Save Scrxtchy/9eee4b4839cea545d2c6 to your computer and use it in GitHub Desktop.
acapela download | Press Listen to get URL
// ==UserScript==
// @name Acapela DL Button
// @namespace Scratch
// @description Puts in a direct link download button
// @include https://acapela-box.com/AcaBox/index.php
// @version 1
// @grant none
// ==/UserScript==
window.ScrUpd = function (){
document.getElementById("generate_confirm").innerHTML = "<a onclick=\"window.ScrUpd()\">Update Listen URL</a> <a href='" + document.getElementById("jp_audio_0").getAttribute("src") + "'>Download MP3</a>";
console.log(document.getElementById("jp_audio_0").getAttribute("src"));
}
"<a onclick=\"ScrUpd()\">Update Listen URL</a>"
document.getElementById("generate_confirm").innerHTML = "<a onclick=\"window.ScrUpd()\">Update Listen URL</a>";
document.getElementById("audioformat_cb").setAttribute("style", "display:none");
document.getElementById("download_button").setAttribute("style", "display:none");
document.getElementById("reportcontainer").setAttribute("style", "display:none");
document.getElementById("jp_container_1").setAttribute("style", "display:none");
document.getElementById("generate_confirm").setAttribute("style", "display:inline");
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment