Skip to content

Instantly share code, notes, and snippets.

@matyasfodor
Created March 19, 2018 09:57
Show Gist options
  • Save matyasfodor/be047af9ca0bd3087dd8d705d52e63b9 to your computer and use it in GitHub Desktop.
Save matyasfodor/be047af9ca0bd3087dd8d705d52e63b9 to your computer and use it in GitHub Desktop.
// ==UserScript==
// @name Trello TODO list
// @namespace Trello
// @version 0.1
// @description Fit 5 columns into a 13" Macbook screen
// @author Matyas Fodor
// @match https://trello.com/*
// @grant none
// ==/UserScript==
function addGlobalStyle(css) {
var head, style;
head = document.getElementsByTagName('head')[0];
if (!head) { return; }
style = document.createElement('style');
style.type = 'text/css';
style.innerHTML = css;
head.appendChild(style);
}
addGlobalStyle('.list-wrapper { width: 230px;}');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment