Skip to content

Instantly share code, notes, and snippets.

@Asbra
Last active May 19, 2017 14:47
Show Gist options
  • Save Asbra/63c55a7e39c25aefa137a0a282b0a321 to your computer and use it in GitHub Desktop.
Save Asbra/63c55a7e39c25aefa137a0a282b0a321 to your computer and use it in GitHub Desktop.
YouTube: Remove Watched videos from Subscriptions
var watched = document.querySelectorAll('.ytd-thumbnail-overlay-resume-playback-renderer');
for (var i = watched.length-1; i >= 0; i--) {
watched[i].parentElement.parentElement.parentElement.parentElement.parentElement.parentElement.remove()
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment