Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/ilanvivanco/blurtrellotitles
Bookmarklet that blurs the content of Trello cards for taking screenshots.
https://github.com/ilanvivanco/blurtrellotitles
Last synced: about 2 months ago
JSON representation
Bookmarklet that blurs the content of Trello cards for taking screenshots.
- Host: GitHub
- URL: https://github.com/ilanvivanco/blurtrellotitles
- Owner: IlanVivanco
- Created: 2015-10-08T18:30:48.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2015-10-08T18:49:32.000Z (over 9 years ago)
- Last Synced: 2023-03-07T20:16:02.117Z (almost 2 years ago)
- Homepage: http://trello.com
- Size: 293 KB
- Stars: 2
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# blurTrelloTitles
A very little script to blur the content of [Trello](http://trello.com/) cards for taking screenshots and showing what your board looks like.![Blurred board sample](blurry_screenshot.png)
#### Bookmarklet
Add the bookmarklet by selecting and dragging it to your bookmarks bar. Then go to your Trello Board and click the bookmark to toggle the blurness.
```javascript
javascript:if($('.list-card-title').hasClass('blurTitle')){$('.list-card-title').css({"color":"black","text-shadow":"none"}).removeClass('blurTitle');}else{$('.list-card-title').css({"color":"transparent","text-shadow":"0 0 10px black"}).addClass('blurTitle');};void 0;
```