hide twitter posts with the hashtag #ad
in them
twitter - hide posts with #ad by ripooof
Details
Authorripooof
LicenseNo License
Categorytwitter
Created
Updated
Size662 B
Statistics
Learn how we calculate statistics in the FAQ.
Failed to fetch stats.
Description
Notes
Userstyle doesn't have notes.Source code
/* ==UserStyle==
@name twitter - hide posts with #ad
@version 20240222.01.33
@namespace twitter
@description hide twitter posts with the hashtag `#ad` in them
==/UserStyle== */
@-moz-document domain("twitter.com") {
[data-testid="cellInnerDiv"]:has([href="/hashtag/ad?src=hashtag_click"]),
[data-testid="cellInnerDiv"]:has([href="/hashtag/Ad?src=hashtag_click"]),
[data-testid="cellInnerDiv"]:has([href="/hashtag/AD?src=hashtag_click"]),
[data-testid="cellInnerDiv"]:has([href="/hashtag/ad"]),
[data-testid="cellInnerDiv"]:has([href="/hashtag/Ad"]),
[data-testid="cellInnerDiv"]:has([href="/hashtag/AD"]){
display: none;
}
}