Hide view counts and follower counts on Twitch, so the numbers aren't in your face all the time and distracting you.
Twitch hide view counts and follower counts by rockethog55
Details
Authorrockethog55
LicenseWTFPL
Categorytwitch.tv
Created
Updated
Size3.8 kB
Statistics
Learn how we calculate statistics in the FAQ.
Failed to fetch stats.
Description
Notes
Creator Dashboard analytics are not hidden. This should be a Twitch-native option IMO.
CSS for hiding partner badges moved to a separate style: https://userstyles.world/style/7099/twitch-hide-partner-badges
My website: https://convert.threexyz.club/
Source code
/* ==UserStyle==
@name Twitch hide view counts and follower counts
@version 20230228.00.44
@namespace userstyles.world/user/rockethog55
@description Hide view counts and follower counts on Twitch.
@author rockethog55
@license WTFPL
==/UserStyle== */
@-moz-document domain("twitch.tv") {
/* SIDEBAR */
/* hide view count for livestreeams and reruns */
.xxjeD > .jOVwMQ {
display: none !important;
}
/* move red dot and rerun icon to the right */
.fCKtYt {
min-width: 0 !important;
}
/* VODS */
/* hide view count */
.fpvLcA > span,
.fpvLcA > .kCftaN {
display: none !important;
}
/* hide follower count */
.evfzyg > .hfyuZP {
font-size: 0 !important;
}
.evfzyg > .hfyuZP > .fVBKtH {
font-size: var(--font-size-6) !important;
}
/* STREAMER RECENT BROADCASTS PAGE */
/* hide view count on community moments */
.gJhnez {
display: none !important;
}
/* hide view count on recent broadcasts */
.eFvOkl > .kdSYzp {
display: none !important;
}
/* hide follower count */
.hdoiLi > .cwNkcn {
display: none !important;
}
/*
hide "Game • x viewers" text in host box
this also hides the game they're playing, but there's no way to select
just the view count here with just CSS. still stands out annoyingly
as one non-hidden view count though, so i'll get this one too.
*/
.iNkiyZ {
font-size: 0 !important;
}
/* hide "Watch streamer with x viewers" link in the host box */
.kwMNMO > div:nth-child(2) {
display: none !important;
}
/* hide view count and dot on schedule page */
.mxQlk .lfSDcB:nth-child(2),
.mxQlk .plvaC:nth-child(3) {
display: none !important;
}
/* STREAMER HOME PAGE */
/* hide view count */
p[data-a-target="animated-channel-viewers-count"] {
display: none !important;
}
/* hide follower count and dot */
.jLsnDT > .hsXgFK:nth-child(1),
.jLsnDT > .hsXgFK:nth-child(2) {
display: none !important;
}
/* hide theater mode/fullscreen view count */
p[data-test-selector="stream-info-card-component__description"] {
font-size: 0 !important;
}
p[data-test-selector="stream-info-card-component__description"] > a {
font-size: var(--font-size-5) !important;
}
/* hide "Watch now with x viewers" link in the Live Now box */
.iCUesI .ktfxqP {
display: none !important;
}
/* hide "Streamer suggests these streamers" view count */
.dZTKuo > .gunHUw {
display: none !important;
}
/* STREAMER BIO POPUP */
/* hide view-count in streamer-bio popup */
.hJDYkS > .hEWasP {
font-size: 0 !important;
}
.hJDYkS > .hEWasP > .cFZogl:nth-child(1) {
font-size: var(--font-size-5) !important;
}
/* follower count */
.crSMNm > .iwAgDg {
display: none !important;
}
/* STREAM MANAGER */
/* hide top bar view count and follower count */
.eAidbF > span:nth-child(2),
.eAidbF > span:nth-child(3),
.eAidbF > span:nth-child(4) {
display: none !important;
}
/* SEARCH PAGE */
/* hide live channel view count */
p[data-test-selector="search-result-live-channel__viewer-count"] {
display: none !important;
}
/* hide "People searching for "x" also watch" section view count */
.REkcH {
font-size: 0 !important;
}
/* hide categories view count */
.cwtKyw > .gBknDX {
display: none !important;
}
/* hide past videos view count and dot */
.hxGXwG > span:nth-child(4),
.hxGXwG > span:nth-child(5) {
display: none !important;
}
/* hide follower count */
.fHETfp {
display: none !important;
}
/* remove top margin of streamer bio */
.jlYexk > .gIALbm {
margin-top: 0 !important;
}
/* FRONT PAGE */
/* hide streamer carousel view count */
.iBXVMz > p {
display: none !important;
}
}