Advertisement
Yunga

Bookmarklet @Spotify.com — Copy Artists.md

Aug 2nd, 2022 (edited)
1,607
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. javascript:
  2.  
  3. (function() {
  4.     let message = `\n# Spotify Artists Export (${ new Date().toISOString().split('.')[0] })\n\n`;
  5.  
  6.     for ( let artist of [...document.getElementsByClassName('Nqa6Cw3RkDMV8QnYreTr')].sort( (a1,a2) => a1.title.localeCompare(a2.title)) )
  7.         message += `- [${artist.title}](${artist.href})\n`;
  8.  
  9.     navigator.clipboard.writeText(message);
  10. })();
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement