Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

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.

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;
```