Last active
February 26, 2021 06:15
-
-
Save ThatsJustCheesy/1d5fc343538fa82a3dabc20754c166bf to your computer and use it in GitHub Desktop.
Remove suggestion walls from YouTube embeds and the end of videos
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* ==UserStyle== | |
@name YouTube No Suggested Videos | |
@author Ian Gregory (igregory.ca) | |
@description Fork of https://userstyles.org/styles/101376/disable-youtube-video-wall | |
@version v1.0.0 | |
@namespace igregory.ca | |
@license MIT | |
==/UserStyle== */ | |
@-moz-document regexp(".*") | |
{ | |
@namespace url(http://www.w3.org/1999/xhtml); | |
.videowall-endscreen, .ytp-pause-overlay { | |
display: none; | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment