Hides unnecessary buttons and text from share, save buttons.
Helps if your youtube is in different language and buttons text take too much space.
Youtube Declutter by arsenicus
Details
Authorarsenicus
License0BSD
Categoryyoutube
Created
Updated
Size1.6 kB
Statistics
Learn how we calculate statistics in the FAQ.
Failed to fetch stats.
Description
Notes
Userstyle doesn't have notes.Source code
/* ==UserStyle==
@name Youtube Declutter
@namespace youtube.com
@version 1.0.0
@description Declutter Youtube buttons etc.
@author Arsenicus
==/UserStyle== */
@-moz-document domain("youtube.com") {
#info.ytd-video-primary-info-renderer {
display: flex;
flex-direction: row;
align-items: center;
flex-wrap: wrap;
}
ytd-toggle-button-renderer #button.ytd-toggle-button-renderer{
width: 30px;
}
/* hide clip button */
#top-level-buttons-computed > ytd-button-renderer:nth-child(5){
display: none !important;
}
/* hide miniplayer button */
.ytp-chrome-controls .ytp-button.ytp-miniplayer-button{
display: none !important;
}
/* hide all text */
/* .ytd-menu-renderer yt-formatted-string {
width: 0em!important;
overflow: hidden!important;
}
*/
ytd-toggle-button-renderer{
font-size: small;
}
/* hide text of buttons like share, save. */
.ytd-menu-renderer yt-formatted-string.style-scope.ytd-button-renderer.style-default.size-default {
display: none;
}
/* hide download button */
#top-level-buttons-computed > ytd-download-button-renderer{
display: none;
}
ytd-button-renderer{
margin:0 !important;
}
* {
text-shadow: none !important;
/* font-weight: normal !important; */
-webkit-transition: none !important;
-moz-transition: none !important;
transition: none !important;
}
}