This package hides thumbnails and shorts on YouTube creating a cleaner browsing experience. This will reduce distractions and make YouTube more minimalist.
Remove Youtube Thumbnails by theMatthewNewman
Details
AuthortheMatthewNewman
LicenseNo License
Categoryyoutube.com
Created
Updated
Size592 B
Statistics
Learn how we calculate statistics in the FAQ.
Failed to fetch stats.
Description
Notes
Please raise any issues at https://github.com/theMatthewNewman/Remove-Youtube-Thumbnails/issues
Source code
/* ==UserStyle==
@name no thumbnails
@version 20240916.03.00
@namespace ?
==/UserStyle== */
@-moz-document domain("youtube.com") {
/* Hides video thumbnails on the homepage, search, and sidebar */
ytd-thumbnail,
#thumbnail {
display: none !important;
}
/* Hides individual Shorts video items */
ytd-rich-item-renderer:has(a[href*="/shorts/"]) {
display: none !important;
}
/* Hides video loading pictures */
.ghost-grid {
display: none !important;
}
/* Hides ad thumbnails */
div.ytd-display-ad-renderer {
display: none !important;
}
}