Skip to content

Instantly share code, notes, and snippets.

@naari3
Last active May 18, 2018 01:33
Show Gist options
  • Save naari3/e4b5bbc7ca80c3be5d1d584e33f69c12 to your computer and use it in GitHub Desktop.
Save naari3/e4b5bbc7ca80c3be5d1d584e33f69c12 to your computer and use it in GitHub Desktop.
soundcloud artwork download bookmarklet
https://codepen.io/naari3/pen/gzQKrw
var url = new URL(document.querySelector('.listenArtworkWrapper span.sc-artwork').style.backgroundImage.slice(5,-2));
fetch(url).then(response => response.blob()).then(blob => {
var a = document.createElement("a");
a.href = window.URL.createObjectURL(blob);
a.download = url.pathname.split('/').pop();
a.click();
})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment