Trello Color Count
Count trello label with color for easier communication in a team
O que é Trello Color Count?
Trello Color Count é uma extensão do Chrome desenvolvida por wendycaner, e sua principal característica é "Count trello label with color for easier communication in a team".
Capturas de Tela da Extensão
Baixar o arquivo CRX da Extensão Trello Color Count
Baixe arquivos de extensão Trello Color Count no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.
Instruções de Uso da Extensão
"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!
Informações Básicas da Extensão
Nome | |
ID | ailnckmejodnmfoifnagckkfapbigkjf |
URL Oficial | https://chrome.google.com/webstore/detail/trello-color-count/ailnckmejodnmfoifnagckkfapbigkjf |
Descrição | Count trello label with color for easier communication in a team |
Tamanho do Arquivo | 38.16 KB |
Contagem de Instalações | 58 |
Versão Atual | 1.1.6 |
Última Atualização | 2018-11-26 |
Data de Publicação | 2018-11-26 |
Classificação | 5.00/5 Total de 3 Avaliações |
Desenvolvedor | wendycaner |
[email protected] | |
Tipo de Pagamento | free |
Idiomas Suportados | 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" ] } ] } |