Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/smichelotti/trello-bookmarklets
Repository for my Trello bookmarklets including core.
https://github.com/smichelotti/trello-bookmarklets
Last synced: about 1 month ago
JSON representation
Repository for my Trello bookmarklets including core.
- Host: GitHub
- URL: https://github.com/smichelotti/trello-bookmarklets
- Owner: smichelotti
- License: apache-2.0
- Created: 2015-07-17T20:17:36.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2015-07-21T03:23:43.000Z (over 9 years ago)
- Last Synced: 2024-04-14T18:02:40.715Z (9 months ago)
- Language: JavaScript
- Size: 137 KB
- Stars: 1
- Watchers: 2
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# trello-bookmarklets
This repository contains my [bookmarklets](https://en.wikipedia.org/wiki/Bookmarklet) for [Trello](https://trello.com/). Currently, it only contains a single bookmarklet - `trello-doing-cards-bookmarklet.js` (to show "Doing" Trello cards across **all** your Trello boards) - but also contains `trello.bookmarklet.core.js`. This file contains the "core" functions need to create a Trello bookmarklet. This core file was created directly from [Trello-Bookmarklet](https://github.com/danlec/Trello-Bookmarklet). Trello-Bookmarklet was instrumental in figuring out how to write a Trello bookmarklet but I wanted to encapsulate all the boilerplate code need into a single "core" file.
### Usage
javascript:(function (a) { var b = a.createElement("script"); b.src = "https://rawgit.com/smichelotti/trello-bookmarklets/master/trello-doing-cards-bookmarklet.js"; a.getElementsByTagName("head")[0].appendChild(b);})(document);
More details in [this blog post](http://stevemichelotti.com/writing-a-trello-bookmarklet-with-async/).