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 กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        "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"
            ]
        }
    ]
}