Trello Color Count

Count trello label with color for easier communication in a team

Trello Color Count là gì?

Trello Color Count là một tiện ích mở rộng Chrome được phát triển bởi wendycaner, và tính năng chính của nó là "Count trello label with color for easier communication in a team".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng Trello Color Count

Tải xuống các tệp mở rộng Trello Color Count dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

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

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Trello Color Count Trello Color Count
ID ailnckmejodnmfoifnagckkfapbigkjf
URL Chính Thức https://chrome.google.com/webstore/detail/trello-color-count/ailnckmejodnmfoifnagckkfapbigkjf
Mô tả Count trello label with color for easier communication in a team
Kích Thước Tệp 38.16 KB
Số Lần Cài Đặt 58
Phiên Bản Hiện Tại 1.1.6
Cập Nhật Lần Cuối 2018-11-26
Ngày Phát Hành 2018-11-26
Đánh Giá 5.00/5 Tổng số 3 Đánh Giá
Nhà Phát Triển wendycaner
Email [email protected]
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ 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"
            ]
        }
    ]
}