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