Lets you tweak some of the new redesign on YouTube, and also removes stuff that I consider useless like the Shorts button, clips, etc... Does NOT remove ads, you will need to use an adblocker like uBlock Origin (or any of your liking, but I recommend that one) for that.
YouTube Enhanced by eros71-dev
Details
Authoreros71-dev
LicenseCC BY-NC-SA 4.0
Categoryyoutube
Created
Updated
Size3.1 kB
Statistics
Learn how we calculate statistics in the FAQ.
Failed to fetch stats.
Description
Notes
v1.0
- Initial release.
- Added the option to show or hide the new comment section.
Source code
/* ==UserStyle==
@name YouTube Enhanced
@version 20220514.13.37
@namespace userstyles.world/user/eros71-dev
@description Lets you tweak some of the new redesign on YouTube, and also removes stuff that I consider useless like the Shorts button, clips, etc... Does NOT remove ads, you will need to use an adblocker like uBlock Origin (or any of your liking, but I recommend that one) for that.
@author eros71-dev
@license CC BY-NC-SA 4.0
==/UserStyle== */
@-moz-document domain("youtube.com") {
/*YouTube Shorts*/
a[title*="Shorts"] {
display: none !important;
}
/*Clips*/
a[title*="clips"] {
display: none !important;
}
/*YouTube Premium*/
a[title*="Premium"] {
display: none !important;
}
/*Movies*/
a[href*="storefront"] {
display: none !important;
}
/*YouTube Gaming*/
ytd-guide-entry-renderer > a[href*="gaming"] {
display: none !important;
}
/*Learning*/
ytd-guide-entry-renderer > a[href*="/channel/UCtFRv9O2AHqOZjjynzrv-xg"] {
display: none !important;
}
/*Live*/
ytd-guide-entry-renderer > a[href*="/channel/UC4R8DWoMoI7CAwX8_LjQHig"] {
display: none !important;
}
/*Sports*/
ytd-guide-entry-renderer > a[href*="/channel/UCEgdi0XIXXZ-qJOFPf4JSKw"] {
display: none !important;
}
/*Top tag/topic suggestions*/
#header.ytd-rich-grid-renderer {
display: none;
}
/*Publications or posts or whatever it was called in english*/
#dismissible.ytd-rich-shelf-renderer {
width: 100%;
display: none;
}
/*Video tag/topic suggestions*/
yt-related-chip-cloud-renderer {
display: inline-block;
display: none;
}
/*----------- OPTIONAL STUFF -----------*/
/*Make the background white when playing videos*/
#page-manager {
background: rgb(255, 255, 255);
}
/*Disable rounded corners on video*/
#ytd-player {
border-radius: 0 !important;
}
/*Hide the new comment box*/
#comment-teaser {
display: none;
}
/*Hide shorts on video page*/
ytd-reel-shelf-renderer {
display: none;
}
/*Hide the border around the channel box & subscription button*/
ytd-watch-metadata:not([modern-metapanel]) #owner.ytd-watch-metadata {
border: none;
}
/*Replace YT font*/
h1.ytd-watch-metadata {
font-family: "Roboto", sans-serif !important;
font-weight: 400;
}
style-scope {
font-family: "Roboto", sans-serif !important;
font-weight: 400;
}
/*Red subscribe button*/
--yt-spec-text-primary {
background-color: #c42828 !important;
}
/*Square buttons*/
yt-spec-button-shape-next{
border-radius: 0px 0px 0px 0px !important;
}
/*Replace YT Font with Roboto (Currently not working)*/
@font-face {
font-family: 'YouTube Sans';
src: url(https://fonts.gstatic.com/s/roboto/v30/KFOlCnqEu92Fr1MmWUlfChc4EsA.woff2) format('woff2') !important;
}
}