Skip to content

Instantly share code, notes, and snippets.

@zoltanhosszu
Created January 29, 2023 11:17
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 zoltanhosszu/26dce217581cc204aee1eedfa3bdad78 to your computer and use it in GitHub Desktop.
Save zoltanhosszu/26dce217581cc204aee1eedfa3bdad78 to your computer and use it in GitHub Desktop.
A short script to remove YouTube Shorts from video list on desktop view
var shorts = document.querySelectorAll('ytd-thumbnail-overlay-time-status-renderer[overlay-style="SHORTS"]');
var shorts_array = [...shorts];
shorts_array.forEach(short => {
short.closest('ytd-grid-video-renderer').remove()
})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment