Hides the item "Grok" in the sidebar
Twitter: hide Grok in sidebar by rybak
Details
Authorrybak
LicenseCC Zero
Categorytwitter.com
Created
Updated
Size413 B
Statistics
Learn how we calculate statistics in the FAQ.
Failed to fetch stats.
Description
Notes
This userstyle works even in Firefox for Android!
See also style Twitter: hide Verified/Premium in sidebar. If you don't like recent renaming of Twitter, userscript Twitter: bring back old name and logo is great.
Changelog
- v2: added support for https://x.com
- v1: initial release
Source code
/* ==UserStyle==
@name Twitter: hide Grok in sidebar
@namespace github.com/rybak
@version 2
@description Hides the item "Grok" in the sidebar
@homepageURL https://github.com/rybak/
@license CC Zero
@author Andrei Rybak
==/UserStyle== */
@-moz-document domain("twitter.com"), domain("x.com") {
[aria-label="Grok"],
nav [href="/i/grok"] {
display: none;
}
}