Trello Color Count

Count trello label with color for easier communication in a team

ما هو Trello Color Count؟

Trello Color Count هو إضافة Chrome تم تطويرها بواسطة wendycaner، والميزة الرئيسية لها هي "Count trello label with color for easier communication in a team".

لقطات شاشة التمديد

screenshot

تحميل ملف CRX للإضافة Trello Color Count

قم بتنزيل ملفات الامتداد Trello Color Count بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.

تعليمات استخدام التمديد

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

معلومات أساسية عن التمديد

الاسم Trello Color Count Trello Color Count
ID ailnckmejodnmfoifnagckkfapbigkjf
عنوان URL الرسمي https://chrome.google.com/webstore/detail/trello-color-count/ailnckmejodnmfoifnagckkfapbigkjf
الوصف Count trello label with color for easier communication in a team
حجم الملف 38.16 KB
عدد التثبيتات 58
النسخة الحالية 1.1.6
آخر تحديث 2018-11-26
تاريخ النشر 2018-11-26
تقييم 5.00/5 مجموع تقييمات 3
المطور wendycaner
البريد الإلكتروني [email protected]
نوع الدفع free
اللغات المدعومة 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"
            ]
        }
    ]
}