Trello Color Count

Count trello label with color for easier communication in a team

Qu'est-ce que Trello Color Count ?

Trello Color Count est une extension Chrome développée par wendycaner, et sa fonction principale est "Count trello label with color for easier communication in a team".

Captures d'Écran de l'Extension

screenshot

Télécharger le fichier CRX de l'extension Trello Color Count

Téléchargez les fichiers d'extension Trello Color Count au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        "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!                    

Informations de Base sur l'Extension

Nom Trello Color Count Trello Color Count
ID ailnckmejodnmfoifnagckkfapbigkjf
URL Officiel https://chrome.google.com/webstore/detail/trello-color-count/ailnckmejodnmfoifnagckkfapbigkjf
Description Count trello label with color for easier communication in a team
Taille du Fichier 38.16 KB
Nombre d'Installations 58
Version Actuelle 1.1.6
Dernière Mise à Jour 2018-11-26
Date de Publication 2018-11-26
Évaluation 5.00/5 Total 3 Évaluations
Développeur wendycaner
Email [email protected]
Type de Paiement free
Langues Prises en Charge 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"
            ]
        }
    ]
}