Skip to content

YouTube Focus by frugbug

Screenshot of YouTube Focus

Details

Authorfrugbug

LicenseMIT

Categoryyoutube.com

Created

Updated

Code size519 B

Code checksum8501c473

Statistics

Learn how we calculate statistics in the FAQ.

Failed to fetch stats.

Description

Simply obscures video recommendations and comments until hovered

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);
	}
}

Reviews

No reviews yet.