Skip to content

Instantly share code, notes, and snippets.

@jondcoleman
Last active April 7, 2017 16:23
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
Star You must be signed in to star a gist
Save jondcoleman/4058357577b22a80c2f43e17345b0f96 to your computer and use it in GitHub Desktop.
// ==UserScript==
// @name Wider Trello Lists
// @namespace http://tampermonkey.net/
// @version 0.4
// @description try to take over the world!
// @author You
// @match https://trello.com/b/*
// @grant none
// ==/UserScript==
function makeWider() {
// test
document.querySelectorAll('.list-wrapper').forEach(x => x.style = 'width: 500px;');
document.querySelectorAll('.list-card').forEach(x => x.style = 'max-width: 500px; width: 500px;');
}
(function() {
'use strict';
setTimeout(makeWider, 1000);
// Your code here...
})();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment