Created
January 22, 2020 23:36
-
-
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)
This file contains 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
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