mirror of
https://github.com/lawrencehook/remove-youtube-suggestions.git
synced 2026-07-25 06:54:31 +00:00
a91e9bd639
Refactor to use pure css paradigm Add another 'bonus' option to remove link to the trending page
24 lines
501 B
CSS
24 lines
501 B
CSS
html[remove_homepage="true"] ytd-browse[page-subtype="home"],
|
|
html[remove_sidebar="true"] #related,
|
|
html[remove_end_of_video="true"] .html5-endscreen,
|
|
|
|
html[remove_trending="true"] a[href="/feed/trending"],
|
|
html[remove_comments="true"] #comments,
|
|
html[remove_comments="true"] #comment-secyoutubetion-renderer-items
|
|
|
|
{
|
|
|
|
display: none !important;
|
|
|
|
}
|
|
|
|
|
|
/* Using display: none on the sidebar messes with the video player's dimensions */
|
|
html[remove_sidebar="true"] #secondary
|
|
|
|
{
|
|
|
|
visibility: hidden;
|
|
|
|
}
|