Skip to content

Distraction-free YouTube by thomasrettig

Details

Authorthomasrettig

LicenseMIT

Categoryyoutube

Created

Updated

Size595 B

Statistics

Learn how we calculate statistics in the FAQ.

Failed to fetch stats.

Description

This userstyle fades out distracting UI elements whenever you watch a video, so I you can watch in peace, distraction-free.

Notes

Userstyle doesn't have notes.

Source code

/* ==UserStyle==
@name         Remove YouTube view count
@version      20221112.08.40
@namespace    userstyles.world/user/thomasrettig
@description  This userstyle removes the view count on YouTube videos, preventing you from clicking on a bad video just because of a higher view count.
@author       thomasrettig
@license      MIT
==/UserStyle== */

@-moz-document domain("youtube.com") {

div#secondary, div#below, #masthead-container.ytd-app {
    opacity: 0.1;
    transition: 0.1s;
}

:is(div#secondary, div#below, #masthead-container.ytd-app):hover {
    opacity: 1;
}
}

Reviews

No reviews yet.