Last active
April 28, 2017 20:32
-
-
Save rashfael/b0fa9c7ffff1cf44bc7639269440a026 to your computer and use it in GitHub Desktop.
Tampermonkey script: Mastodon full width columns
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 Mastodon full width columns | |
// @namespace http://isobeef.org/ | |
// @version 0.1 | |
// @description Mastodon full width columns | |
// @author rash <rashfael@isobeef.org> | |
// @updateUrl https://gist.github.com/rashfael/b0fa9c7ffff1cf44bc7639269440a026/raw/mastodon-full-width-columns.user.js | |
// @downloadUrl https://gist.github.com/rashfael/b0fa9c7ffff1cf44bc7639269440a026/raw/mastodon-full-width-columns.user.js | |
// @match https://chaos.social/web/* | |
// @grant GM_addStyle | |
// ==/UserScript== | |
(function() { | |
'use strict'; | |
GM_addStyle('.column, .drawer { flex: 1 1 auto; max-width: none; }'); | |
})(); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment