Trello Squadification

Distributed squadification for Trello

What is Trello Squadification?

Trello Squadification is a Chrome extension developed by Magnus Nord, and its main feature is "Distributed squadification for Trello".

Extension Screenshots

screenshot
screenshot

Download Trello Squadification Extension CRX File

Download Trello Squadification extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        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)                    

Extension Basic Information

Name Trello Squadification Trello Squadification
ID bbmpbbepkbllcidebbdgecomhnlddjjd
Official URL https://chromewebstore.google.com/detail/trello-squadification/bbmpbbepkbllcidebbdgecomhnlddjjd
Description Distributed squadification for Trello
File Size 200 KB
Installation Count 163
Current Version 0.1.0
Last Updated 2018-03-15
Publish Date 2018-03-15
Rating 3.50/5 Total 2 Ratings
Developer Magnus Nord
Email [email protected]
Payment Type free
Supported Languages 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\/*"
            ]
        }
    ]
}