Trello Color Count
Count trello label with color for easier communication in a team
Wat is Trello Color Count?
Trello Color Count is een Chrome-extensie ontwikkeld door wendycaner, en de belangrijkste functie is "Count trello label with color for easier communication in a team".
Extensie Screenshots
Download het CRX-bestand van de extensie Trello Color Count
Download Trello Color Count-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.
Instructies voor het Gebruik van de Extensie
"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!
Basisinformatie over de Extensie
Naam | |
ID | ailnckmejodnmfoifnagckkfapbigkjf |
Officiële URL | https://chrome.google.com/webstore/detail/trello-color-count/ailnckmejodnmfoifnagckkfapbigkjf |
Beschrijving | Count trello label with color for easier communication in a team |
Bestandsgrootte | 38.16 KB |
Aantal Installaties | 58 |
Huidige Versie | 1.1.6 |
Laatst Bijgewerkt | 2018-11-26 |
Publicatiedatum | 2018-11-26 |
Beoordeling | 5.00/5 Totaal 3 Beoordelingen |
Ontwikkelaar | wendycaner |
[email protected] | |
Betalingswijze | free |
Ondersteunde Talen | 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" ] } ] } |