Progress for Trello

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

Progress for Trello là gì?

Progress for Trello là một tiện ích mở rộng Chrome được phát triển bởi https://cycododge.com, và tính năng chính của nó là "Track the overall completion of your Trello-based project by counting cards, scrum points, and checklists.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot
screenshot
screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng Progress for Trello

Tải xuống các tệp mở rộng Progress for Trello dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        ## 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.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Progress for Trello Progress for Trello
ID ihneehmaifakdfpbjmneobgeifcaddbd
URL Chính Thức https://chromewebstore.google.com/detail/progress-for-trello/ihneehmaifakdfpbjmneobgeifcaddbd
Mô tả Track the overall completion of your Trello-based project by counting cards, scrum points, and checklists.
Kích Thước Tệp 1.45 MB
Số Lần Cài Đặt 435
Phiên Bản Hiện Tại 1.2.4
Cập Nhật Lần Cuối 2018-01-18
Ngày Phát Hành 2018-01-18
Đánh Giá 2.80/5 Tổng số 5 Đánh Giá
Nhà Phát Triển https://cycododge.com
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ 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"
            ]
        }
    ]
}