Skip to content

4 line JS code to remove upto 100 songs from your amazon library (in-case you decide to go evil and quickly delete your's friends library or want to clean up your library)

Notifications You must be signed in to change notification settings

irohitb/AmazonprimeMusicDeletion

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

2 Commits
 
 
 
 

Repository files navigation

  1. Go to https://music.amazon.in/my/songs
  2. right click and select inspect elements
  3. click on console on the upper right handside
  4. Paste the following thing in your console
const classesWithLabel = document.getElementsByClassName("checkboxLabel")
for (let i=0; i<classesWithLabel.length; i++) {
classesWithLabel[i].click()
}
  1. This will select upto 100 songs, click on remove items to remove songs
  2. Refresh the window, redo it until all your songs are removed.

About

4 line JS code to remove upto 100 songs from your amazon library (in-case you decide to go evil and quickly delete your's friends library or want to clean up your library)

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published