This is an add-on for YouTube, improving the design and removing unnecessary elements.
YouTube+ by gabrielvicenteYT
Details
AuthorgabrielvicenteYT
LicenseYou can do whatever you want with this, just don't blatantly copy and re-release the Stylus theme without giving proper credits to me, and to everyone that helped.
Categoryyoutube.com
Created
Updated
Size1.7 kB
Statistics
Learn how we calculate statistics in the FAQ.
Failed to fetch stats.
Description
Notes
This is an add-on for YouTube, improving the user experience.
Has multiple improvements, such as:
- Separating the Search Bar from the Search Button
- Making the Rounded Corners more visually pleasing.
- Full compatibility with both Light Mode and Dark Mode.
Known bugs:
- The border on the right side of the Search Bar does not appear (Fixed in Version 1.0.1)
Changelog:
1.0
- The first version of YouTube+
1.0.1
- Fixes the bug that existed in the first YouTube+ version
1.0.2
- Adds rounded avatar photos in the YouTube start page (Credits: neekowo)
1.0.3
- Adds a YouTube video player de-bloater (Credits: asperatus)
Source code
/* ==UserStyle==
@name YouTube+
@namespace Link
@version 1.0.3
@description A Stylus theme that enhances your YouTube experience
@author Author
==/UserStyle== */
@-moz-document domain("youtube.com") {
/* Search Box */
#container.ytd-searchbox {
align-items: center;
background-color: var(--ytd-searchbox-background);
border: 0.75px solid var(--ytd-searchbox-legacy-border-color);
border-right: 0.75px solid var(--ytd-searchbox-legacy-border-color);
border-radius: 14px 14px 14px 14px;
caret-color: var(--yt-spec-text-primary);
color: var(--ytd-searchbox-text-color);
padding: 0px 4px 0px 15px;
margin-left: 32px;
flex: 0.99;
flex-basis: 69px;
display: flex;
flex-direction: row;
}
/* Search Button */
#search-icon-legacy.ytd-searchbox {
border: 1px solid var(--ytd-searchbox-legacy-button-border-color);
background-color: var(--ytd-searchbox-legacy-button-color);
border-radius: 14px 14px 14px 14px;
cursor: pointer;
height: 40px;
width: 57.5px;
margin: 0;
}
/* User avatar image */
yt-img-shadow#avatar {
border-radius: 10px !important;
}
/* YouTube video player de-bloater (Credits: asperatus)*/
.ytp-button,
.ytp-panel-footer {
display: none !important;
}
.ytp-play-button,
.ytp-mute-button,
.ytp-settings-button,
.ytp-fullscreen-button,
.ytp-chapter-title,
.ytp-subtitles-button,
.ytp-large-play-button,
.ytp-chapter-title-content,
.ytp-panel-options,
.ytp-panel-title {
display: initial !important;
}
#notification-preference-button {
display: none !important;
}
.branding-img-container {
display: none !important;
}
/* That's about it! :) */
}