Advertisement
MsG110
Dec 21st, 2023
83
0
Never
This is comment for paste YouTube - Clear Watch Later
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. The posted script for YouTube is no longer functional. However, I found a new one that works perfectly fine. It deletes the videos one by one automatically.
  2.  
  3. setInterval(function() {
  4. document.querySelector('#contents button#button').click();
  5. var things = document.evaluate('//span[contains(text(),"Watch later")]',document,null,XPathResult.ORDERED_NODE_SNAPSHOT_TYPE,null);
  6. for (var i = 0; i < things.snapshotLength; i++) {
  7. things.snapshotItem(i).click();
  8. }
  9. }, 1000);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement