Created
February 12, 2020 18:40
-
-
Save grantwinney/7a3683fc5e9ef404962f14c8895529a6 to your computer and use it in GitHub Desktop.
Hide elements of the Twitter UI
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
@-moz-document url-prefix("https://twitter.com") { | |
/* LEFT COLUMN NAVIGATION */ | |
header[role="banner"], /* HIDE ENTIRE COLUMN */ | |
[aria-label="Twitter"], /* logo */ | |
[data-testid="AppTabBar_Home_Link"], /* home */ | |
[data-testid="AppTabBar_Explore_Link"], /* explore */ | |
[data-testid="AppTabBar_Notifications_Link"], /* notifications */ | |
[data-testid="AppTabBar_DirectMessage_Link"], /* messages */ | |
[aria-label="Bookmarks"], /* bookmarks */ | |
[aria-label="Lists"], /* lists */ | |
[aria-label="Profile"], /* profile */ | |
[data-testid="AppTabBar_More_Menu"], /* more */ | |
[aria-label="Tweet"], /* tweet */ | |
/* RIGHT COLUMN NAVIGATION */ | |
[data-testid="sidebarColumn"], /* HIDE ENTIRE COLUMN */ | |
[role="search"],[href="/search-advanced"], /* search */ | |
[aria-label="Timeline: Trending now"], /* trends */ | |
[aria-label="Who to follow"], /* who to follow */ | |
[aria-label="Relevant people"], /* relevant people */ | |
[aria-label="Footer"], /* footer */ | |
/* CENTER COLUMN */ | |
[data-testid="primaryColumn"], /* HIDE ENTIRE COLUMN */ | |
[aria-label="Timeline: Your Home Timeline"], /* timeline */ | |
[aria-label="Timeline: Conversation"] | |
> div > div > div:not(:first-child), /* replies */ | |
/* Reactions */ | |
[data-testid="reply"], /* reply */ | |
[data-testid="retweet"], /* retweet */ | |
[data-testid="like"],[data-testid="unlike"], /* like */ | |
[aria-label="Share Tweet"] /* share */ | |
{ | |
display: none !important; | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment