YouTube - Hide Controls Until Hover

Automatically hides the top and bottom bar when paused. Makes it easier to read text on the top/bottom that is normally hidden by the controls.

Verze ze dne 05. 06. 2022. Zobrazit nejnovější verzi.

K instalaci tototo skriptu si budete muset nainstalovat rozšíření jako Tampermonkey, Greasemonkey nebo Violentmonkey.

K instalaci tohoto skriptu si budete muset nainstalovat rozšíření jako Tampermonkey nebo Violentmonkey.

K instalaci tohoto skriptu si budete muset nainstalovat rozšíření jako Tampermonkey nebo Violentmonkey.

K instalaci tohoto skriptu si budete muset nainstalovat rozšíření jako Tampermonkey nebo Userscripts.

You will need to install an extension such as Tampermonkey to install this script.

K instalaci tohoto skriptu si budete muset nainstalovat manažer uživatelských skriptů.

(Už mám manažer uživatelských skriptů, nechte mě ho nainstalovat!)

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

(Už mám manažer uživatelských stylů, nechte mě ho nainstalovat!)

/* ==UserStyle==
@name          YouTube - Hide Controls Until Hover
@namespace     q1k
@version       1.0.0
@description   Automatically hides the top and bottom bar when paused. Makes it easier to read text on the top/bottom that is normally hidden by the controls.
@type          less
@preprocessor  uso
==/UserStyle== */

@-moz-document domain("youtube.com") {
.html5-video-player.paused-mode .ytp-chrome-top, 
.html5-video-player.paused-mode .ytp-gradient-top, 
.html5-video-player.paused-mode .ytp-chrome-bottom, 
.html5-video-player.paused-mode .ytp-gradient-bottom {
  visibility: hidden;
}
.html5-video-player.paused-mode:hover .ytp-chrome-top, 
.html5-video-player.paused-mode:hover .ytp-gradient-top, 
.html5-video-player.paused-mode:hover .ytp-chrome-bottom, 
.html5-video-player.paused-mode:hover .ytp-gradient-bottom {
  visibility: visible;
}

}