Created
January 20, 2017 22:09
-
-
Save tlemburg/1aca0fffe32f1a46f93718ab6934e7c4 to your computer and use it in GitHub Desktop.
This file contains hidden or 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 Card Numbers | |
// @namespace http:// | |
// @version 0.1 | |
// @description Shows card numbers on trello. New cards don't get this usually so you may need to refresh the page. | |
// @author Tyler Lemburg | |
// @match https://trello.com/* | |
// @grant none | |
// ==/UserScript== | |
$(document).ready(function () { | |
setInterval(function() { | |
$('.card-short-id').removeClass('hide').css('margin-right', '4px'); | |
}, 1000); | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment