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.”。
擴展截圖
下載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. 擴展基本資訊
| 名稱 | |
| ID | ihneehmaifakdfpbjmneobgeifcaddbd |
| 官方網址 | 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"
]
}
]
} | |