Skip to content

Instantly share code, notes, and snippets.

@somidad
Created November 30, 2016 18:43
Show Gist options
  • Save somidad/098db36a0565e21bbab817d2614ba76d to your computer and use it in GitHub Desktop.
Save somidad/098db36a0565e21bbab817d2614ba76d to your computer and use it in GitHub Desktop.
Clear Youtube watch later list
/* copy and paste below in web browser console
* source: https://www.reddit.com/r/youtube/comments/2jfdzf/how_to_remove_all_videos_from_watch_later/cof5cbb */
function d(){
var el = document.getElementsByClassName('pl-video-edit-remove');
if (el.length > 0) {
el[el.length-1].click();
setTimeout(d,300);
}
}
d();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment