Skip to content

Instantly share code, notes, and snippets.

@gogvale
Created January 22, 2020 23:36
Show Gist options
  • Save gogvale/36d605543fb4d65c531dbb80caccd3a3 to your computer and use it in GitHub Desktop.
Save gogvale/36d605543fb4d65c531dbb80caccd3a3 to your computer and use it in GitHub Desktop.
Deletes all videos from Youtube's watch later playlist by selecting and clicking the icons (use it while reproducing said playlist)
icons = document.querySelectorAll('[aria-label="Eliminar"]');
for(let i in icons) {try{icons[i].click()}catch{}};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment