Skip to content

Original Tweets Only by niceopod

Details

Authorniceopod

LicenseCC Zero

Categorytwitter

Created

Updated

Size449 B

Statistics

Learn how we calculate statistics in the FAQ.

Failed to fetch stats.

Description

Hides retweets, tweets your follows liked, etc. from your Twitter timeline

Notes

Sets display: none on every tweet with the indicator text at the top that indicates where a tweet from someone you don't follow came from. This requires the :has() selector in order to work, so if you're using Firefox you'll have to enable layout.css.has-selector.enabled in about:config for this to do anything.

Source code

/* ==UserStyle==
@name         Original Tweets Only
@version      20221216.04.53
@namespace    userstyles.world/user/niceopod
@description  Hides retweets, tweets your follows liked, etc. from your Twitter timeline
@author       niceopod
@license      CC Zero
==/UserStyle== */

@-moz-document regexp("(http(s)?://)?twitter.com/(home)?(/)?") {
div[data-testid="cellInnerDiv"]:has(.css-1dbjc4n.r-15zivkp.r-q3we1) * {
  display: none;
}
}

Reviews

No reviews yet.