Created
March 19, 2018 09:57
-
-
Save matyasfodor/be047af9ca0bd3087dd8d705d52e63b9 to your computer and use it in GitHub Desktop.
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 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