Skip to content

Instantly share code, notes, and snippets.

@tlemburg
Created January 20, 2017 22:09
Show Gist options
  • Save tlemburg/1aca0fffe32f1a46f93718ab6934e7c4 to your computer and use it in GitHub Desktop.
Save tlemburg/1aca0fffe32f1a46f93718ab6934e7c4 to your computer and use it in GitHub Desktop.
// ==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