Skip to content

Instantly share code, notes, and snippets.

@grantwinney
Created February 12, 2020 18:40
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save grantwinney/7a3683fc5e9ef404962f14c8895529a6 to your computer and use it in GitHub Desktop.
Save grantwinney/7a3683fc5e9ef404962f14c8895529a6 to your computer and use it in GitHub Desktop.
Hide elements of the Twitter UI
@-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