Skip to content

Instantly share code, notes, and snippets.

@lu-zero
Created October 28, 2015 23:27
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 lu-zero/4b90b3a1dd59c5c4ac14 to your computer and use it in GitHub Desktop.
Save lu-zero/4b90b3a1dd59c5c4ac14 to your computer and use it in GitHub Desktop.
Making the trello UI more useful...
// ==UserScript==
// @name Trello
// @namespace it.luminem.trello
// @include https://trello.com/*
// @include http://trello.com/*
// @require http://ajax.googleapis.com/ajax/libs/jquery/1.9.1/jquery.min.js
// @grant none
// ==/UserScript==
this.$ = this.jQuery = jQuery.noConflict(true);
$(document).ready(function(){
$(".card-short-id").removeClass('hide').addClass('badge-text').addClass('badge');
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment