setInterval(function () {
video = document.getElementsByTagName('ytd-playlist-video-renderer')[0];
video.querySelector('#primary button[aria-label="Action menu"]').click();
var things = document.evaluate(
'//span[contains(text(),"Remove from")]',
document,
null,
XPathResult.ORDERED_NODE_SNAPSHOT_TYPE,
null
);
for (var i = 0; i < things.snapshotLength; i++)
{
things.snapshotItem(i).click();
}
}, 500);
Created
December 18, 2022 18:31
-
-
Save frarredondo/09bf7ba15050f8dc1a178626583d6e0a to your computer and use it in GitHub Desktop.
YouTube - Remove Watch Later Script
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment