Created
September 18, 2022 17:06
-
-
Save goop32/f205634d3d4e809ac65bc618ad306dde to your computer and use it in GitHub Desktop.
want a song from Pandora? paste this into the JS console of your browser and download away!
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| audiotags = document.getElementsByTagName("audio"); | |
| for (i in audiotags) { | |
| if (!isNaN(i)) {console.log("link: " + audiotags.item(i).src);} | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment