Created
February 5, 2019 16:56
-
-
Save kraynel/e33a19cc20ae1173683f61234d82c41c to your computer and use it in GitHub Desktop.
bookmarklet trello
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
| 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