Trello Points
Sums points for a Trello column when cards have associated points as labels
What is Trello Points?
Trello Points is a Chrome extension developed by nstetich, and its main feature is "Sums points for a Trello column when cards have associated points as labels".
Extension Screenshots
Download Trello Points Extension CRX File
Download Trello Points extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
Sum Points in Trello If you assign points to cards using a label, this extension will sum all of the point labels by column for visible cards on your board. Note: I am not affiliated with Trello, but this is how my team uses Trello. If you use it this way, you may find this extension useful.
Extension Basic Information
Name | Trello Points |
ID | goigmjpaehddoikooikbblloogaijjpo |
Official URL | https://chromewebstore.google.com/detail/trello-points/goigmjpaehddoikooikbblloogaijjpo |
Description | Sums points for a Trello column when cards have associated points as labels |
File Size | 15.17 KB |
Installation Count | 22 |
Current Version | 0.0.10 |
Last Updated | 2016-03-10 |
Publish Date | 2016-03-10 |
Rating | 4.00/5 Total 3 Ratings |
Developer | nstetich |
[email protected] | |
Payment Type | free |
Supported Languages | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "__MSG_appName__", "version": "0.0.10", "manifest_version": 2, "description": "__MSG_appDescription__", "icons": { "16": "images\/icon-16.png", "128": "images\/icon-128.png" }, "default_locale": "en", "background": { "scripts": [ "scripts\/background.js" ] }, "options_page": "options.html", "content_scripts": [ { "matches": [ "http:\/\/trello.com\/*", "https:\/\/trello.com\/*" ], "js": [ "scripts\/contentscript.js" ], "run_at": "document_end", "all_frames": false } ] } |