Simply obscures video recommendations and comments until hovered
YouTube Focus by frugbug
Details
Authorfrugbug
LicenseMIT
Categoryyoutube.com
Created
Updated
Size519 B
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 Focus
@namespace youtube.com
@version 1.1.2
@description Hides distractions on Youtube
@author frugbug
==/UserStyle== */
@-moz-document domain("youtube.com") {
#secondary-inner,
#comments,
.ytp-endscreen-content {
opacity: 0.2;
filter: blur(4px);
transition: opacity 0.2s, filter 0.05s;
}
#secondary:hover > #secondary-inner,
#below:hover > #comments,
.html5-endscreen:hover > .ytp-endscreen-content {
opacity: 1;
filter: blur(0px);
}
}