Created
March 2, 2022 15:32
-
-
Save XrXr/41f4a222dcc66feeeb3a1b031ec4aac1 to your computer and use it in GitHub Desktop.
Chrome extension to hide trending topics on Twitter. Sometimes you don't want to look at news.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
div[aria-label="Timeline: Trending now"] { | |
visibility: hidden; | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"name": "Twitter trendless", | |
"action": {}, | |
"manifest_version": 3, | |
"version": "0.1", | |
"description": "Hide tending topics on Twitter", | |
"content_scripts": [ | |
{ | |
"matches": ["https://twitter.com/*"], | |
"css": ["invisible-trends.css"] | |
} | |
] | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment