Trello Color Count

Count trello label with color for easier communication in a team

Was ist Trello Color Count?

Trello Color Count ist eine Chrome-Erweiterung, die von wendycaner entwickelt wurde, und ihr Hauptmerkmal ist "Count trello label with color for easier communication in a team".

Erweiterungsscreenshots

screenshot

Trello Color Count-Erweiterungs-CRX-Datei herunterladen

Laden Sie Trello Color Count-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

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

Grundlegende Informationen zur Erweiterung

Name Trello Color Count Trello Color Count
ID ailnckmejodnmfoifnagckkfapbigkjf
Offizielle URL https://chrome.google.com/webstore/detail/trello-color-count/ailnckmejodnmfoifnagckkfapbigkjf
Beschreibung Count trello label with color for easier communication in a team
Dateigröße 38.16 KB
Installationsanzahl 58
Aktuelle Version 1.1.6
Letztes Update 2018-11-26
Veröffentlichungsdatum 2018-11-26
Bewertung 5.00/5 Insgesamt 3 Bewertungen
Entwickler wendycaner
E-Mail [email protected]
Zahlungsart free
Unterstützte Sprachen 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"
            ]
        }
    ]
}