https://github.com/ilanvivanco/showtrellocardnumbers
Bookmarklet that toggle the numbers of Trello cards.
https://github.com/ilanvivanco/showtrellocardnumbers
Last synced: over 1 year ago
JSON representation
Bookmarklet that toggle the numbers of Trello cards.
- Host: GitHub
- URL: https://github.com/ilanvivanco/showtrellocardnumbers
- Owner: IlanVivanco
- Created: 2015-10-30T11:58:29.000Z (over 10 years ago)
- Default Branch: master
- Last Pushed: 2020-04-23T21:45:37.000Z (over 6 years ago)
- Last Synced: 2025-01-14T06:33:22.853Z (over 1 year ago)
- Homepage: http://trello.com
- Size: 713 KB
- Stars: 11
- Watchers: 1
- Forks: 3
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# showTrelloCardNumbers
Bookmarklet that shows the numbers of [Trello](http://trello.com/) cards.

#### Bookmarklet
+ Drag the link below to your browser bar to create a bookmarklet:
- [Show Card Numbers](//replace_this_by_JS.com)
+ Right Click on bookmarklet created and choose Edit
+ Paste the JavaScript code below into the URL field
+ Visit your Trello page to test the bookmarklet
```javascript
javascript:void function(){var o=$(".card-short-id");o.each(function(){$(this).text($(this).text().replace("#",""))});o.hasClass("hide")?o.removeClass("hide").css({"font-size":".8em","margin-right":"5px",padding:"2.3px 6px",background:"#ebecf0","border-radius":"10px",color:"#172b4d"}):o.addClass("hide")}();
```