Last active
August 12, 2021 13:53
-
-
Save janxious/88aa52e448d489f4011d992a24f72f21 to your computer and use it in GitHub Desktop.
Twitter User Styles
This file contains 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
/* ==UserStyle== | |
@name Make twitter less bad | |
@namespace github.com/janxious | |
@version 1.2.0 | |
@description remove the sidebar, outline images without alt tags, change the font to something useful | |
@author Joel Meador | |
==/UserStyle== */ | |
@-moz-document domain("twitter.com") { | |
/* outline images without alt tags */ | |
div[aria-label="Image"] { | |
border: 2px dotted red; | |
} | |
/* hide all sidebar content because it all sucks */ | |
div[data-testid="sidebarColumn"] > div > div > div > div > div > div + div { | |
display: none; | |
} | |
/* user Verdana font instead of the horrible one twitter commissioned */ | |
* { | |
font-family: verdana !important; | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment