Trello Color Count

Count trello label with color for easier communication in a team

什麼是Trello Color Count?

Trello Color Count是由wendycaner開發的Chrome擴展程式,該擴展的主要功能是“Count trello label with color for easier communication in a team”。

擴展截圖

screenshot

下載Trello Color Count擴展crx文件

下載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
官方網址 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"
            ]
        }
    ]
}