Trello Color Count
Count trello label with color for easier communication in a team
What is Trello Color Count?
Trello Color Count is a Chrome extension developed by wendycaner, and its main feature is "Count trello label with color for easier communication in a team".
Extension Screenshots
Download Trello Color Count Extension CRX File
Download Trello Color Count 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
"Count Trello Label" helps you count all cards' label time in a list.If you have installed "Card Color Titles for Trello", it will be better. Tips: A List named "Divider" will look like a divider. Just have a try!
Extension Basic Information
Name | |
ID | ailnckmejodnmfoifnagckkfapbigkjf |
Official URL | https://chrome.google.com/webstore/detail/trello-color-count/ailnckmejodnmfoifnagckkfapbigkjf |
Description | Count trello label with color for easier communication in a team |
File Size | 38.16 KB |
Installation Count | 58 |
Current Version | 1.1.6 |
Last Updated | 2018-11-26 |
Publish Date | 2018-11-26 |
Rating | 5.00/5 Total 3 Ratings |
Developer | wendycaner |
[email protected] | |
Payment Type | free |
Supported Languages | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "version": "1.1.6", "name": "Trello Color Count", "description": "Count trello label with color for easier communication in a team", "manifest_version": 2, "browser_action": { "default_popup": "pop\/popup.html" }, "permissions": [ "storage", "tabs", "https:\/\/trello.com\/*" ], "background": { "persistent": false, "scripts": [ "background\/background.js" ] }, "content_scripts": [ { "matches": [ "https:\/\/trello.com\/*" ], "css": [ "index.css" ], "js": [ "lib\/jquery-3.1.1.js", "content.js" ] } ] } |