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 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        ## 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"
            ]
        }
    ]
}