OGD's enhancements for Trello

An extension that counts points on trello cards. We use it at OGD to make trello work just a bit better as a Scrum board. - shows…

Was ist OGD's enhancements for Trello?

OGD's enhancements for Trello ist eine Chrome-Erweiterung, die von Unknown entwickelt wurde, und ihr Hauptmerkmal ist "An extension that counts points on trello cards. We use it at OGD to make trello work just a bit better as a Scrum board. - shows…".

Erweiterungsscreenshots

screenshot

OGD's enhancements for Trello-Erweiterungs-CRX-Datei herunterladen

Laden Sie OGD's enhancements for Trello-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        An extension that counts points on trello cards.

We use it at OGD to make trello work just a bit better as a Scrum board.

- shows points typed between parens. (e.g. "improve the world (2)")
- It dims cards that have no points assigned (So everyone's aware that those tasks aren't accounted for in the totals)
- You can use '?' to indicate that the count is not known yet
- If a list has a '?' card it's point total will end in '?' as well
- large numbers are presented in red
- Presents card that have a title starting with '#' like: "card title" as "separator" cards. Use labels to color them.
- Shows the board description using a button that is more discoverable than the trello default
- Allows you to put (B) (I) (D) next to a list title (for indicating (B)acklog, (I)n work and (D)one. It shows lists that are backlog or done using a darker color

Note:

- Doesn't have the point picker in the trello card
- Started out as some adaptations of Scrum for Trello but is mostly different code now.                    

Grundlegende Informationen zur Erweiterung

Name OGD's enhancements for Trello OGD's enhancements for Trello
ID cjghgjfldfggplglagdmomhbachkcjhk
Offizielle URL https://chromewebstore.google.com/detail/ogds-enhancements-for-tre/cjghgjfldfggplglagdmomhbachkcjhk
Beschreibung An extension that counts points on trello cards. We use it at OGD to make trello work just a bit better as a Scrum board. - shows…
Dateigröße 215 KB
Installationsanzahl 103
Aktuelle Version 7.0.2
Letztes Update 2017-07-19
Veröffentlichungsdatum 2017-07-19
Bewertung 4.63/5 Insgesamt 8 Bewertungen
Entwickler Unknown
Zahlungsart free
Erweiterungswebsite https://www.ogd.nl/diensten/software-ontwikkeling/
Hilfeseite URL https://github.com/BUS-OGD/OGDs-enhancements-for-Trello
Unterstützte Sprachen en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "OGD's enhancements for Trello",
    "version": "7.0.2",
    "description": "",
    "content_scripts": [
        {
            "matches": [
                "https:\/\/trello.com\/*"
            ],
            "js": [
                "jquery-1.7.1.min.js",
                "mutation_summary.js",
                "trelloscrum.js"
            ],
            "css": [
                "trelloscrum.css"
            ]
        }
    ],
    "background": {
        "scripts": [
            "showPageAction.js"
        ]
    },
    "permissions": [
        "tabs"
    ],
    "page_action": {
        "default_icon": {
            "19": "images\/ogd-trello19.png",
            "38": "images\/ogd-trello38.png"
        },
        "default_title": "Board settings",
        "default_popup": "popup.html"
    },
    "manifest_version": 2,
    "icons": {
        "128": "images\/ogd-trello128.png"
    }
}