Created
July 19, 2019 02:23
-
-
Save thebecwar/2fddfdf09bb37671d40f40753bf342b2 to your computer and use it in GitHub Desktop.
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
// ==UserScript== | |
// @name Make Twitter Suck Less | |
// @namespace http://tampermonkey.net/ | |
// @version 0.1 | |
// @description Make twitter suck slightly less by tweaking the layout | |
// @author @thebecwar | |
// @match http*://twitter.com/* | |
// @grant GM_addStyle | |
// ==/UserScript== | |
(function() { | |
'use strict'; | |
GM_addStyle('* { font-size: 14px !important; }'); | |
GM_addStyle('.css-1dbjc4n.r-aqfbo4.r-1joea0r.r-zso239.r-1ovo9ad { display: none !important; }'); | |
GM_addStyle('.r-1ye8kvj { max-width: 100% !important; }'); | |
})(); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment