Hide the "Timeline: Trending now" frame in Twitter/X.com
Hide "Trending now" frame in Twitter/X.com by nikou
Details
Authornikou
LicenseGPLv3
Categoryx.com
Created
Updated
Size674 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/X - Hide "Trending now" frame
@namespace github.com/openstyles/stylus
@version 1.0.6
@license GPLv3
@description Hide the "Timeline: Trending now" frame in Twitter/X.com
@author Nikou
==/UserStyle== */
@-moz-document domain("twitter.com"),
domain("x.com") {
/* Skip the 2nd and 3rd class selector to work in any visual theme */
div.css-1dbjc4n.r-1867qdf.r-1phboty.r-rs99b7.r-1ifxtd0.r-1udh08x section {
display: none !important;
}
[aria-label="Cronología: Tendencias del momento"],
[aria-label="Timeline: Trending now"] {
display: none;
}
}