Skip to content

Instantly share code, notes, and snippets.

@scarlac
Last active February 16, 2026 07:21
Show Gist options
  • Select an option

  • Save scarlac/ceae8766ced23740817ad6ba173c8e48 to your computer and use it in GitHub Desktop.

Select an option

Save scarlac/ceae8766ced23740817ad6ba173c8e48 to your computer and use it in GitHub Desktop.
UserStyle: Remove YouTube shorts & "Next video" suggestions
/* ==UserStyle==
@name Remove Shorts & Next Video (CSS)
@description This is your new file, start writing code
@match https://*.youtube.com/*
==/UserStyle== */
.ytd-reel-shelf-renderer,
ytd-rich-shelf-renderer[is-shorts] {
display: none;
}
/* Optional: Removes 'next video' suggestion overlay near end of video */
.ytp-ce-element.ytp-ce-video {
display: none;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment