Last active
December 16, 2015 12:18
-
-
Save rdkls/5433089 to your computer and use it in GitHub Desktop.
Tampermonkey script to show the number of cards in each Trello list
Turns out it's already there, just need to set display = block
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 Lists Show Num Cards | |
// @namespace http://use.i.E.your.homepage/ | |
// @version 0.1 | |
// @description enter something useful | |
// @match https://trello.com/board/* | |
// @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
It looks like they changed the class to '.list-header-num-cards hide js-num-cards', so I changed to
Other than that, this worked like a champ for me. Thank you for sharing!