Created
January 17, 2023 12:15
-
-
Save Zeko369/06cff7c36057d958c2d0e60db91ceb89 to your computer and use it in GitHub Desktop.
This file contains hidden or 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
| /* Hide "Home" */ | |
| div[aria-label="Home timeline"] > :first-child > div > div:first-child { | |
| display: none; | |
| } | |
| /* Hide "For you / Followoing" */ | |
| div[aria-label="Home timeline"] > :first-child > div > div:nth-child(2) { | |
| display: none; | |
| } | |
| /* Hide "Both bars" */ | |
| div[aria-label="Home timeline"] > :first-child { | |
| display: none; | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment