Skip to content

Instantly share code, notes, and snippets.

@siddolo
Created September 22, 2021 15:05
Show Gist options
  • Save siddolo/2c3cc6e137f741b376defffe6e6cf5ec to your computer and use it in GitHub Desktop.
Save siddolo/2c3cc6e137f741b376defffe6e6cf5ec to your computer and use it in GitHub Desktop.
// 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