Trello Squadification
Distributed squadification for Trello
什麼是Trello Squadification?
Trello Squadification是由Magnus Nord開發的Chrome擴展程式,該擴展的主要功能是“Distributed squadification for Trello”。
擴展截圖
下載Trello Squadification擴展crx文件
下載Trello Squadification擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
This is an extension for Trello letting people self-organize.
* Setup custom constraints with roles and team sizes
* Uses Trello built-in functionality to specify main and supporting roles
* Uses the custom field powerup to generate team statistics and insights
For documentation go here: https://github.com/NordMagnus/Trello-Squadification/wiki/Documentation
CHANGELOG
Version 0.1.0
=============================
- Code refactoring
- Added "Group Overview" showing stats for entire group
- Small visual fixes to buttons and charts
- Performance changes (hopefully improvements)
Version 0.0.4
=============================
- Minor performance fixes(?)
- Possible to use ">=" and "<=" to define team size constraints
- Added a constraint for confidence
- Added graph for role distribution in team (pie chart)
- Added graph for team confidence (when defined as custom field "Confidence")
- Concern card titles added to the status bar at top of list
Version 0.0.3
=============================
- Performance fixes related to cover images
Version 0.0.2
=============================
- Toggle icon sizes (original ⇒ small ⇒ hide)
- Graphs are sorted alphabetically
- Fixed minor visual glitch when adding cards to "Squadification Constraints" list
- Removed default size for teams (won't check unless specifically specified) 擴展基本資訊
| 名稱 | |
| ID | bbmpbbepkbllcidebbdgecomhnlddjjd |
| 官方網址 | https://chromewebstore.google.com/detail/trello-squadification/bbmpbbepkbllcidebbdgecomhnlddjjd |
| 簡介 | Distributed squadification for Trello |
| 檔案大小 | 200 KB |
| 安裝次數 | 163 |
| 目前版本 | 0.1.0 |
| 更新時間 | 2018-03-15 |
| 上架時間 | 2018-03-15 |
| 評分 | 3.50/5 共 2 次評分 |
| 開發者 | Magnus Nord |
| 電子郵箱 | [email protected] |
| 付費類型 | free |
| 支援的語言 | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 2,
"name": "Trello Squadification",
"version": "0.1.0",
"icons": {
"16": "icons\/icon16.png",
"48": "icons\/icon48.png",
"64": "icons\/icon64.png",
"128": "icons\/icon128-96.png"
},
"permissions": [
"storage"
],
"browser_action": {
"default_icon": "icons\/icon48.png"
},
"description": "Distributed squadification for Trello",
"content_scripts": [
{
"css": [
"styles.css"
],
"js": [
"lib\/jquery.js",
"lib\/Chart.js",
"tdom.js",
"trello-squadification.js",
"content.js"
],
"matches": [
"https:\/\/trello.com\/*"
]
}
]
} | |