It's time to make YouTube more usable -- Removes the bloat from the YouTube player
YouTube Player Debloater by asperatus
Details
Authorasperatus
LicenseGNU General Public License 3
Categoryyoutube, debloat
Created
Updated
Size938 B
Statistics
Learn how we calculate statistics in the FAQ.
Failed to fetch stats.
Description
Notes
Helps you get rid of the useless elements of the YouTube player, such as the "next" button, the "theater mode" button, and more.
Source code
/* ==UserStyle==
@name YouTube Player Debloater
@version 20210825.02.57
@namespace userstyles.world/user/asperatus
@description It’s time to make YouTube more usable – Removes the bloat from the YouTube player
@author asperatus
@license GNU General Public License 3
==/UserStyle== */
@-moz-document url-prefix("https://www.youtube.com/") {
.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;
}
}