Trello Color Count

Count trello label with color for easier communication in a team

Vad är Trello Color Count?

Trello Color Count är en Chrome-tillägg utvecklad av wendycaner, och dess huvudfunktion är "Count trello label with color for easier communication in a team".

Tilläggsskärmbilder

screenshot

Ladda ner Trello Color Count-förlängningens CRX-fil

Ladda ner Trello Color Count-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        "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äggande Information om Tillägg

Namn Trello Color Count Trello Color Count
ID ailnckmejodnmfoifnagckkfapbigkjf
Officiell webbadress https://chrome.google.com/webstore/detail/trello-color-count/ailnckmejodnmfoifnagckkfapbigkjf
Beskrivning Count trello label with color for easier communication in a team
Filstorlek 38.16 KB
Antal Installationer 58
Aktuell Version 1.1.6
Senast Uppdaterad 2018-11-26
Publiceringsdatum 2018-11-26
Betyg 5.00/5 Totalt 3 Betyg
Utvecklare wendycaner
E-post [email protected]
Betalningssätt free
Stödda Språk 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"
            ]
        }
    ]
}