Skip to content

Instantly share code, notes, and snippets.

@hannah-scott
Last active February 17, 2022 09:14
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save hannah-scott/aae477a1468cabe9820cc2ac5e06ed28 to your computer and use it in GitHub Desktop.
Save hannah-scott/aae477a1468cabe9820cc2ac5e06ed28 to your computer and use it in GitHub Desktop.
Pulls all bought items on Bandcamp from your collection, for use with BandcampDownloader.
var urls = document.getElementsByClassName("item-link");
var string = "";
for (var url of urls) {
if (url.href) {
string += url + "\n";
}
}
alert(string);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment