Trello Squadification

Distributed squadification for Trello

Trello Squadification란 무엇입니까?

Trello Squadification은(는) Magnus Nord에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Distributed squadification for Trello"입니다.

확장 프로그램 스크린샷

screenshot
screenshot

Trello Squadification 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        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)                    

확장 프로그램 기본 정보

이름 Trello Squadification Trello Squadification
ID bbmpbbepkbllcidebbdgecomhnlddjjd
공식 URL 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\/*"
            ]
        }
    ]
}