Skip to content

Instantly share code, notes, and snippets.

@thebecwar
Created July 19, 2019 02:23
Show Gist options
  • Save thebecwar/2fddfdf09bb37671d40f40753bf342b2 to your computer and use it in GitHub Desktop.
Save thebecwar/2fddfdf09bb37671d40f40753bf342b2 to your computer and use it in GitHub Desktop.
// ==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