Trello Color Count

Count trello label with color for easier communication in a team

Hvad er Trello Color Count?

Trello Color Count er en Chrome-udvidelse udviklet af wendycaner, og dens hovedfunktion er "Count trello label with color for easier communication in a team".

Udvidelsesskærmbilleder

screenshot

Download Trello Color Count-udvidelses-CRX-fil

Download Trello Color Count-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.

Brugsanvisning til Udvidelsen

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

Grundlæggende oplysninger om udvidelsen

Navn Trello Color Count Trello Color Count
ID ailnckmejodnmfoifnagckkfapbigkjf
Officiel URL https://chrome.google.com/webstore/detail/trello-color-count/ailnckmejodnmfoifnagckkfapbigkjf
Beskrivelse Count trello label with color for easier communication in a team
Filstørrelse 38.16 KB
Antal Installationer 58
Nuværende Version 1.1.6
Senest Opdateret 2018-11-26
Udgivelsesdato 2018-11-26
Bedømmelse 5.00/5 Samlet 3 Bedømmelser
Udvikler wendycaner
E-mail [email protected]
Betalingsmetode free
Understøttede Sprog 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"
            ]
        }
    ]
}