Skip to content

Instantly share code, notes, and snippets.

@uahim
Created October 23, 2024 16:54
Show Gist options
  • Save uahim/6017ab09b45a66536d89d22566e07da6 to your computer and use it in GitHub Desktop.
Save uahim/6017ab09b45a66536d89d22566e07da6 to your computer and use it in GitHub Desktop.
amazon music copy tracklist to clipboard bookmarklet
var nix = "";
for (var i = 0, len = document.getElementsByClassName("col1").length; i < len; ++i) {
var it = document.getElementsByClassName("col1")[i].innerText;
if (it.indexOf("&") == -1) { // optional, obviously
nix += document.getElementsByClassName("col1")[i].innerText + "\n";
}
}
navigator.clipboard.writeText(nix)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment