Skip to content

Instantly share code, notes, and snippets.

@jsebrech
Last active December 14, 2018 08:56
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 jsebrech/c6089145ffa0df6afdae103544a4dc98 to your computer and use it in GitHub Desktop.
Save jsebrech/c6089145ffa0df6afdae103544a4dc98 to your computer and use it in GitHub Desktop.
Trello bookmarklet for old card description
  1. Create a bookmark for this URL:

javascript:(function(){var id=location.href.match(/trello\.com\/c\/([a-zA-Z0-9]{8})\//)[1];$.get('/1/cards/'+id+'/actions?filter=updateCard:desc').done(function(res){prompt('ctrl-c to copy',res[0].data.old.desc)})})()

  1. Open a card in trello

  2. Open the bookmark

  3. An alert is shown with the previous description (if any)

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment