Skip to content

youtube hide view and subscriber counts by sometechbro

Details

Authorsometechbro

LicenseNo License

CategoryYoutube

Created

Updated

Size1.9 kB

Statistics

Learn how we calculate statistics in the FAQ.

Failed to fetch stats.

Description

hides view, subscriber and like counts

Notes

Userstyle doesn't have notes.

Source code

/* ==UserStyle==
@name         youtube hide view and subscriber counts
@version      20231130.09.20
@namespace    userstyles.world/user/sometechbro
@description  hides view and subscriber counts
@author       sometechbro
@license      No License
==/UserStyle== */

@-moz-document domain("youtube.com") {
/* subscriber count */
#subscriber-count {
    display: none !important;
}

/* view count */
#metadata-line > span:nth-child(3),
#description-inline-expander > yt-formatted-string.ytd-text-inline-expander > span:first-child,
#description-inline-expander > yt-formatted-string.ytd-text-inline-expander > span:nth-child(2),
#snippet-text > .ytd-text-inline-expander > span:first-child,
#snippet-text > .ytd-text-inline-expander > span:nth-child(2) {
    display: none !important;
}

#metadata-line.ytd-video-meta-block>.ytd-video-meta-block:not(:first-of-type):before {
    content: "" !important;
    margin: 0 !important;
}


/* video page view count */
#info-text > #count,
#info-text #dot,
#info > span:nth-child(1),
#info > span:nth-child(2),
#view-count {
    display: none !important;
}

/* video page subscriber count */
#owner-sub-count {
    display: none !important;
}

/* like count */
#top-level-buttons-computed > ytd-toggle-button-renderer:first-child #text,
.YtLikeButtonViewModelHost button > div:nth-child(2) {
    display: none !important;
}

/* center like button */
.YtLikeButtonViewModelHost button > div:nth-child(1) {
    margin: 0 !important;
}

/* comment like count */
#vote-count-middle {
    display: none !important;
}

/* youtube shorts like count */
#like-button #text {
    display: none !important;
}

/* verified badge */
.badge-style-type-verified {
    display: none !important;
}

/* about page view count */
ytd-channel-about-metadata-renderer > #right-column > yt-formatted-string:nth-child(3) {
    display: none !important;
}
}

Reviews

No reviews yet.