Trello Color Count

Count trello label with color for easier communication in a team

Apa itu Trello Color Count?

Trello Color Count adalah ekstensi Chrome yang dikembangkan oleh wendycaner, dan fitur utamanya adalah "Count trello label with color for easier communication in a team".

Screenshot Ekstensi

screenshot

Unduh Berkas CRX Ekstensi Trello Color Count

Unduh file ekstensi Trello Color Count dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.

Petunjuk Penggunaan Ekstensi

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

Informasi Dasar Ekstensi

Nama Trello Color Count Trello Color Count
ID ailnckmejodnmfoifnagckkfapbigkjf
URL Resmi https://chrome.google.com/webstore/detail/trello-color-count/ailnckmejodnmfoifnagckkfapbigkjf
Deskripsi Count trello label with color for easier communication in a team
Ukuran File 38.16 KB
Jumlah Instalasi 58
Versi Saat Ini 1.1.6
Terakhir Diperbarui 2018-11-26
Tanggal Publikasi 2018-11-26
Penilaian 5.00/5 Total 3 Penilaian
Pengembang wendycaner
Email [email protected]
Tipe Pembayaran free
Bahasa yang Didukung 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"
            ]
        }
    ]
}