Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save eedeebee/d2ebee5ef9e2e98ead49 to your computer and use it in GitHub Desktop.
Save eedeebee/d2ebee5ef9e2e98ead49 to your computer and use it in GitHub Desktop.
// ==UserScript==
// @name Trello Lists Show Num Cards
// @namespace http://use.i.E.your.homepage/
// @version 0.1
// @description enter something useful
// @match https://trello.com/b/*
// @copyright 2012+, You
// @require http://ajax.googleapis.com/ajax/libs/jquery/2.0.0/jquery.min.js
// ==/UserScript==
setTimeout(function() {
$('.num-cards').each(function() { this.style.display='block'; })
}, 500
);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment