Hide stats recently added in Twitter from tweets.
Disabling in tweet details may coming later.
Authorbunlang
LicenseNo License
Categorytwitter
Created
Updated
Size856 B
Learn how we calculate statistics in the FAQ.
Failed to fetch stats.
Hide stats recently added in Twitter from tweets.
Disabling in tweet details may coming later.
/* ==UserStyle==
@name twitter.com Without stat !
@version 2023.01.17.9
@namespace userstyles.world/user/bunlang
@description Hide stats recently added in Twitter from tweets and tweet details
@author bunlang
@license No License
==/UserStyle== */
@-moz-document domain("twitter.com") {
/* Stats in tweet */
section[aria-labelledby^="accessible-list"] div:only-child > article[data-testid="tweet"] div[role="group"] > div:nth-child(4) {
display: none;
}
/* Stats in tweet details */
div[data-testid="cellInnerDiv"]:first-of-type article[data-testid="tweet"] > div a[href*="/status/"] + span,
div[data-testid="cellInnerDiv"]:first-of-type article[data-testid="tweet"] > div a[href*="/status/"] + span + span {
display: none;
border: 1px red solid;
}
}