How To Remove All Watch Later Videos from Playlist / Delete All Videos From Watch Later

154
0
Published 2022-01-16

All Comments (6)
  • @exzisd
    Here’s the script just delete the first and last quotation marks at the start and end. I tried pasting to the description but YouTube removed it twice.Remember to delete the “ marks otherwise it won’t run. There’s one at the beginning and one at the end. You don’t need to be a computer wiz to do this. Just function F12 to open CONSOLE then in the terminal paste the following without the beginning and final quotation mark. If it doesn’t work the first time either try refreshing or closing and opening a new tab to repeat as sometimes it will run smoothly and other times it takes several tries. If you have a better script and/or one that runs on mobile (including an app) please share below. “setInterval(function() { document.querySelector('#primary button[aria-label="Action menu"]').click(); var things = document.evaluate('//span[contains(text(),"Watch later")]',document,null,XPathResult.ORDERED_NODE_SNAPSHOT_TYPE,null); for (var i = 0; i < things.snapshotLength; i++) { things.snapshotItem(i).click(); } }, 1000);”
  • @exzisd
    5:16 for demonstration of script running in Chrome, I found this same Script also works in Brave and Safari for Mac OS.