Trello custom progress bar

Customize you Trello progress bar

什么是Trello custom progress bar?

Trello custom progress bar是由topaztee开发的Chrome扩展程序,该扩展的主要功能是“Customize you Trello progress bar”。

扩展截图

screenshot
screenshot
screenshot

下载Trello custom progress bar扩展crx文件

下载Trello custom progress bar扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        Change the boring blue progress bar to something else.
To change the progress bar, right click the extension icon, and choose options.                    

扩展基本信息

名称 Trello custom progress bar Trello custom progress bar
ID afbaaokfpieehjeffeceajdopnlempob
官方URL https://chromewebstore.google.com/detail/trello-custom-progress-ba/afbaaokfpieehjeffeceajdopnlempob
简介 Customize you Trello progress bar
文件大小 50.44 KB
安装次数 46
当前版本 1.2
更新时间 2019-04-29
上架时间 2019-04-29
评分 2.33/5 共3次评分
开发者 topaztee
电子邮箱 [email protected]
付费类型 free
支持的语言 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Trello custom progress bar",
    "short_name": "Trello custom progress bar",
    "description": "Customize you Trello progress bar",
    "version": "1.2",
    "permissions": [
        "tabs",
        "storage",
        "webNavigation"
    ],
    "browser_action": {
        "default_title": "blahblah",
        "default_icon": {
            "32": "32.png"
        }
    },
    "background": {
        "matches": [
            "*:\/\/trello.com\/c\/*"
        ],
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "icons": {
        "32": "32.png",
        "48": "48.png",
        "128": "128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/trello.com\/*"
            ],
            "js": [
                "content.js"
            ]
        }
    ],
    "web_accessible_resources": [
        "*.png"
    ],
    "options_page": "options.html"
}