Trello Color Count
Count trello label with color for easier communication in a team
Cos'è Trello Color Count?
Trello Color Count è un'estensione di Chrome sviluppata da wendycaner, e la sua funzione principale è "Count trello label with color for easier communication in a team".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Trello Color Count
Scarica i file di estensione Trello Color Count in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
"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!
Informazioni di Base sull'Estensione
Nome | |
ID | ailnckmejodnmfoifnagckkfapbigkjf |
URL Ufficiale | https://chrome.google.com/webstore/detail/trello-color-count/ailnckmejodnmfoifnagckkfapbigkjf |
Descrizione | Count trello label with color for easier communication in a team |
Dimensione del File | 38.16 KB |
Conteggio Installazioni | 58 |
Versione Corrente | 1.1.6 |
Ultimo Aggiornamento | 2018-11-26 |
Data di Pubblicazione | 2018-11-26 |
Valutazione | 5.00/5 Totale 3 Valutazioni |
Sviluppatore | wendycaner |
[email protected] | |
Tipo di Pagamento | free |
Lingue Supportate | 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" ] } ] } |