Getting rid of ads, trending, "grok", and other bullshit.
Twitter X Personal Preference by DiabetikGam3r

Details
AuthorDiabetikGam3r
LicenseNo License
Categoryx.com
Created
Updated
Code size2.7 kB
Code checksumd157a464
Statistics
Learn how we calculate statistics in the FAQ.
Failed to fetch stats.
Description
Notes
Trying to keep a version of this for myself on here instead of copying to some google doc, in hopes I can simply load it back up whenever I get on new devices/re-install os, etc. Should work in all background modes: Default, Dim (which is what's shown in the preview image), and Lights out.
Thanks to technoabyss for the head start with their "Twitter: Remove bullshit" Style. I HIGHLY recommend checking their page out.
I have no idea what I'm doing, so take this for what it is and don't expect any coherent type of help. ¯_(ツ)_/¯
CHANGELOG v20250309.13.34
- Reverting "Access your post analytics" ad banner removal - still searching for that instance...
CHANGELOG v20250302.10.50
- PROPERLY removed "Access your post analytics" ad banner seen on your own posts... (hopefully)
CHANGELOG v20250301.19.54
- Removed "Access your post analytics" ad banner on individual posts
CHANGELOG v20250216.02.20
- Removed Grok feature "Profile Summary" on profile icon hover
CHANGELOG v20250213.17.00
- Fixed bug that removed video UI: the timeline and volume slider
CHANGELOG v20250213.14.22
- Completely removed Grok features/buttons
- Removed Premium Ad banner that pops up sometimes on individual posts
- Removed "menu > more" items: "Jobs", "Monetization"
- Extra clean up of code
CHANGELOG v20250213.12.57
- Removed Left Column List Items: "Jobs"
CHANGELOG v20250213.12.34
- Removed Left Column List items: "Premium", "Grok", "Verified Orgs"
- Removed Home Timeline button: "Enhance this post with Grok"
- Removed "Grok Drawer" Message button (bottom right)
- Cleaned up source code
CHANGELOG v20240517.09.05
- Changed domain to [x.com] respectively.
CHANGELOG v20231101.13.03
- Changed Search Bar background to transparent instead of black.
Source code
/* ==UserStyle==
@name Twitter X Personal Preference
@version 20250309.13.34
@namespace https://userstyles.world/user/DiabetikGam3r
@description Hides a variety of things I don't like about twitter.
@author DiabetikGam3r
@license No License
==/UserStyle== */
@-moz-document domain("x.com") {
/* Left sidebar buttons */
[aria-label="Search and explore"],
[aria-label="Bookmarks"],
[aria-label="Lists"],
[aria-label="Premium"],
[aria-label="Grok"],
[aria-label="Verified Orgs"],
[aria-label="Jobs"],
/* "More" menu */
[role="menu"] a[href^="https://ads.x.com"], /* Ads */
[role="menu"] a[href^="https://analytics.x.com"], /* Analytics */
[role="menu"] a[href$="/moment_maker"], /* Moments */
[role="menu"] a[href$="/topics"], /* Topics */
[role="menu"] a[href^="https://studio.x.com"], /* Media Studio */
[role="menu"] .r-109y4c4, /* Separator */
[role="menu"] a[href="https://support.x.com/"], /* Help Center */
[role="menu"] a[href$="/newsletters"], /* Newsletters */
[role="menu"] a[href="/i/twitter_blue_sign_up"], /* Twitter Blue */
[role="menu"] a[href="/i/flow/convert_to_professional"],
[role="menu"] a[href="/jobs"],
[role="menu"] a[href="/i/monetization"]
{ display: none }
/* REMOVE GROK */
/* Remove Grok button from Home Timeline */
[aria-label="Enhance your post with Grok"],
/* Remove Grok Button bottom right */
[data-testid="GrokDrawer"],
/* Remove Grok Profile Summary button */
[aria-label="Profile Summary"],
/* Remove Grok button from posts */
[aria-label="Grok actions"],
/* Remove Profile Summary on hover */
.r-1wzrnnt
{ display: none }
/* Display ONLY search bar/profile media in right column */
[data-testid="sidebarColumn"]
{ visibility: hidden }
[role="search"],
[aria-label="Image"]
{ visibility: visible }
/* Set background of search box to transparent */
[role="search"]
{ background: #15202b00 }
/* No trends or keywords in search */
/* Hide everything */
[aria-label="Search Twitter"] > .css-1dbjc4n:nth-of-type(2) > .css-1dbjc4n > .css-1dbjc4n
{ display: none }
/* Explicitly show accounts */
[aria-label="Search Twitter"] > .css-1dbjc4n:nth-of-type(2) > .css-1dbjc4n > .css-1dbjc4n:last-of-type
{ display: block }
/* Remove ads on single posts */
.r-1xpp3t0 /* Premium Ad banner */
/* .r-1ifxtd0 "Access your post analytics" banner */
{ display: none }
/* Normalize the font size (usually 18px vs the regular 14px) */
.r-1i10wst
{ font-size: inherit }
/* Make left sidebar buttons take up full width of sidebar */
[aria-label="Primary"][role="navigation"] > * > div {
width: 100%;
justify-content: left;
}
}