Skip to content

Instantly share code, notes, and snippets.

@vuori
Last active June 1, 2019 11:56
Show Gist options
  • Save vuori/16285203aeb8b2cbff038b6b6073ba22 to your computer and use it in GitHub Desktop.
Save vuori/16285203aeb8b2cbff038b6b6073ba22 to your computer and use it in GitHub Desktop.
// ==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