Progress for Trello

Track the overall completion of your Trello-based project by counting cards, scrum points, and checklists.

什么是Progress for Trello?

Progress for Trello是由https://cycododge.com开发的Chrome扩展程序,该扩展的主要功能是“Track the overall completion of your Trello-based project by counting cards, scrum points, and checklists.”。

扩展截图

screenshot
screenshot
screenshot
screenshot
screenshot

下载Progress for Trello扩展crx文件

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

扩展使用说明

                        ## Features

- Choose which lists to track progress against
- Option to track checklists
	- Option to track completed items
- Option to track scrum points *
- Per board settings
- Pre-selects lists based on title
	- 'done'
	- 'live'
	- 'complete'
	- 'finished'
	- 'closed'

* Supported Point Formats
	"Card Title (1.5)" //will count 1.5 points
		- Scrum For Trello - https://chrome.google.com/webstore/detail/scrum-for-trello/jdbcdblgjdpmfninkoogcfpnkjmndgje


## Note

This plug-in directly injects code into the Trello page in order to quickly and easily monitor changes to your boards.                    

扩展基本信息

名称 Progress for Trello Progress for Trello
ID ihneehmaifakdfpbjmneobgeifcaddbd
官方URL https://chromewebstore.google.com/detail/progress-for-trello/ihneehmaifakdfpbjmneobgeifcaddbd
简介 Track the overall completion of your Trello-based project by counting cards, scrum points, and checklists.
文件大小 1.45 MB
安装次数 435
当前版本 1.2.4
更新时间 2018-01-18
上架时间 2018-01-18
评分 2.80/5 共5次评分
开发者 https://cycododge.com
付费类型 free
支持的语言 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Progress for Trello",
    "version": "1.2.4",
    "manifest_version": 2,
    "description": "Track the overall completion of your Trello-based project by counting cards, scrum points, and checklists.",
    "homepage_url": "http:\/\/cycododge.com\/projects#progress",
    "icons": {
        "16": "icons\/icon16.png",
        "48": "icons\/icon48.png",
        "128": "icons\/icon128.png"
    },
    "content_security_policy": "script-src 'self' https:\/\/www.google-analytics.com; object-src 'self'",
    "background": {
        "page": "analytics.html",
        "persistent": false
    },
    "permissions": [
        "https:\/\/*.trello.com\/*"
    ],
    "web_accessible_resources": [
        "js\/bp-trello.js"
    ],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*.trello.com\/*"
            ],
            "css": [
                "css\/bp-trello.css"
            ]
        },
        {
            "matches": [
                "https:\/\/*.trello.com\/*"
            ],
            "js": [
                "js\/inject.js"
            ]
        }
    ]
}