Temporarily hides the shorts overlay; hover to reveal it again.
Hide Shorts Overlay by rahaaatul
Details
Authorrahaaatul
LicenseNo License
Categoryyoutube.com
Created
Updated
Size651 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 Hide Shorts Overlay
@version 20241123.18.06
@namespace https://userstyles.world/style/19446/hide-shorts-overlay
@description Temporarily hides the shorts overlay; hover to reveal it again.
@author Rahatul Ghazi
==/UserStyle== */
@-moz-document domain("youtube.com") {
/* Hide Shorts Overlay */
.metadata-container.ytd-reel-player-overlay-renderer,
.player-controls.ytd-reel-video-renderer {
opacity: 0;
transition: 300ms ease;
}
/* Show Shorts Overlay */
.metadata-container.ytd-reel-player-overlay-renderer:hover,
.player-controls.ytd-reel-video-renderer:hover {
opacity: 1;
}
}