Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save rafaelcastrocouto/612dc07b1db3b357212be6eab326e0ab to your computer and use it in GitHub Desktop.
Save rafaelcastrocouto/612dc07b1db3b357212be6eab326e0ab to your computer and use it in GitHub Desktop.
Remove watched from Youtube subscriptions feed
var vids = document.querySelectorAll('ytd-thumbnail-overlay-resume-playback-renderer');
for (prog of vids) {
prog.parentElement.parentElement.parentElement.parentElement.parentElement.style.display = 'none';
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment