Only show unread notifications on YouTube.
Hide read YouTube notifications by ctimmerman
Details
Authorctimmerman
LicenseCC0 - Public Domain
Categoryyoutube
Created
Updated
Size422 B
Statistics
Learn how we calculate statistics in the FAQ.
Failed to fetch stats.
Description
Notes
Copied from https://userstyles.org/styles/181234/hide-read-youtube-notifications as those don't actually install anymore.
Source code
/* ==UserStyle==
@name Hide read YouTube notifications
@namespace youtube.com
@version 1.0.0
@description Only show unread notifications on YouTube.
@author Cees Timmerman
==/UserStyle== */
@-moz-document domain("youtube.com")
{
ytd-notification-renderer
{
display: none!important;
}
ytd-notification-renderer.unread
{
display: block!important;
}
}