Trello Checklist Plus

Extends the Trello Checklist with usefull functions

什么是Trello Checklist Plus?

Trello Checklist Plus是由b.geissler89开发的Chrome扩展程序,该扩展的主要功能是“Extends the Trello Checklist with usefull functions”。

扩展截图

screenshot

下载Trello Checklist Plus扩展crx文件

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

扩展使用说明

                        -Feature to extrude a Checklist Item into a own Card and create a back-link without deleting the actual.                    

扩展基本信息

名称 Trello Checklist Plus Trello Checklist Plus
ID lgpellhflojpkpbhiehgfeoiodbhpeil
官方URL https://chromewebstore.google.com/detail/trello-checklist-plus/lgpellhflojpkpbhiehgfeoiodbhpeil
简介 Extends the Trello Checklist with usefull functions
文件大小 311 KB
安装次数 53
当前版本 0.0.12
更新时间 2016-07-20
上架时间 2016-07-20
评分 2.88/5 共8次评分
开发者 b.geissler89
付费类型 free
扩展官网 https://www.web-ben.de
支持的语言 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Trello Checklist Plus",
    "author": "Benjamin Gei\u00dfler",
    "short_name": "TC+",
    "version": "0.0.12",
    "manifest_version": 2,
    "description": "Extends the Trello Checklist with usefull functions",
    "icons": {
        "16": "images\/icon-16.png",
        "128": "images\/icon-128.png"
    },
    "default_locale": "en",
    "background": {
        "page": "index.html"
    },
    "content_security_policy": "script-src 'self' https:\/\/api.trello.com; object-src 'self'",
    "content_scripts": [
        {
            "matches": [
                "http:\/\/trello.com\/*",
                "https:\/\/trello.com\/*"
            ],
            "exclude_matches": [
                "https:\/\/trello.com\/1\/authorize?*",
                "http:\/\/trello.com\/1\/authorize?*"
            ],
            "js": [
                "bower_components\/jQuery\/dist\/jquery.js",
                "scripts\/contentscript.js"
            ]
        },
        {
            "matches": [
                "https:\/\/trello.com\/1\/OAuthAuthorizeToken*"
            ],
            "js": [
                "background\/inject-workaround.js"
            ],
            "run_at": "document_start"
        }
    ],
    "web_accessible_resources": [
        "background\/chrome_ex_oauth.html"
    ],
    "permissions": [
        "tabs",
        "https:\/\/trello.com\/1\/OAuthGetRequestToken",
        "https:\/\/trello.com\/1\/OAuthAuthorizeToken",
        "https:\/\/trello.com\/1\/OAuthGetAccessToken"
    ]
}