Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save jfred/03aa15ec243577d5ee06 to your computer and use it in GitHub Desktop.
Save jfred/03aa15ec243577d5ee06 to your computer and use it in GitHub Desktop.
Delete all watched videos in YouTube Playlist
(function() {
var i = window.setInterval(function() {
var watched = document.querySelector('.watched');
var closeButton = watched ? watched.parentNode.parentNode.parentNode.querySelector('.pl-video-edit-remove') : false;
if (closeButton) {
closeButton.click();
} else {
window.clearInterval(i);
}
}, 500);
})();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment