Last active
June 1, 2019 11:56
-
-
Save vuori/16285203aeb8b2cbff038b6b6073ba22 to your computer and use it in GitHub Desktop.
This file contains hidden or 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 Widen TweetDeck | |
// @namespace http://github.com/vuori | |
// @description Make Tweetdeck columns wider | |
// @grant GM_addStyle | |
// @homepageURL https://gist.github.com/vuori/16285203aeb8b2cbff038b6b6073ba22 | |
// @updateURL https://gist.githubusercontent.com/vuori/16285203aeb8b2cbff038b6b6073ba22/raw/WidenTweetdeck.js | |
// @include https://tweetdeck.twitter.com/* | |
// @run-at document-start | |
// @version 1.0 | |
// ==/UserScript== | |
// Trimmed down version of https://userstyles.org/styles/127765 | |
(function() { | |
// Adjust width to your liking | |
var css = [ | |
".column {", | |
" width: calc(50%) !important;", | |
" }" | |
].join("\n"); | |
GM_addStyle(css); | |
})(); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment