Skip to content

Instantly share code, notes, and snippets.

@kraynel
Created February 5, 2019 16:56
Show Gist options
  • Select an option

  • Save kraynel/e33a19cc20ae1173683f61234d82c41c to your computer and use it in GitHub Desktop.

Select an option

Save kraynel/e33a19cc20ae1173683f61234d82c41c to your computer and use it in GitHub Desktop.
bookmarklet trello
javascript:(function(){let cardId = location.href.match(/c\/([^/]+)/)[1];let url = `https://trello.com/1/cards/${cardId}/actions?filter=updateCard:desc`;fetch(url).then(data => data.json()).then(body => document.querySelector('textarea.comment-box-input').textContent = body[0].data.old.desc);})();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment