Skip to content

Instantly share code, notes, and snippets.

@hayleyxyz
Created February 27, 2025 17:22
Show Gist options
  • Save hayleyxyz/fe1d6ca170314a3c7be525acd5f87450 to your computer and use it in GitHub Desktop.
Save hayleyxyz/fe1d6ca170314a3c7be525acd5f87450 to your computer and use it in GitHub Desktop.
Clear YouTube playlist
// Go to https://www.youtube.com/playlist?list=WL
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);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment