Created
September 22, 2021 15:05
-
-
Save siddolo/2c3cc6e137f741b376defffe6e6cf5ec to your computer and use it in GitHub Desktop.
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
// empty spotify liked songs | |
const elements = document.querySelectorAll('button[aria-label="Elimina da La tua libreria"]'); | |
Array.from(elements).forEach((element, index) => { | |
element.click() | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment