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
Eメール [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"
            ]
        }
    ]
}