Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save gogvale/45233db5e8b46b4e270eb46ec81e18c8 to your computer and use it in GitHub Desktop.
Save gogvale/45233db5e8b46b4e270eb46ec81e18c8 to your computer and use it in GitHub Desktop.
Delete all videos in YouTube Playlist
(function() {
var i = window.setInterval(function() {
var closeButton = document.querySelector('.pl-video-edit-remove');
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