Trello Points

Sums points for a Trello column when cards have associated points as labels

Wat is Trello Points?

Trello Points is een Chrome-extensie ontwikkeld door nstetich, en de belangrijkste functie is "Sums points for a Trello column when cards have associated points as labels".

Extensie Screenshots

screenshot

Download het CRX-bestand van de extensie Trello Points

Download Trello Points-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                        Sum Points in Trello

If you assign points to cards using a label, this extension will sum all of the point labels by column for visible cards on your board.

Note: I am not affiliated with Trello, but this is how my team uses Trello. If you use it this way, you may find this extension useful.                    

Basisinformatie over de Extensie

Naam Trello Points Trello Points
ID goigmjpaehddoikooikbblloogaijjpo
Officiële URL https://chromewebstore.google.com/detail/trello-points/goigmjpaehddoikooikbblloogaijjpo
Beschrijving Sums points for a Trello column when cards have associated points as labels
Bestandsgrootte 15.17 KB
Aantal Installaties 22
Huidige Versie 0.0.10
Laatst Bijgewerkt 2016-03-10
Publicatiedatum 2016-03-10
Beoordeling 4.00/5 Totaal 3 Beoordelingen
Ontwikkelaar nstetich
E-mail [email protected]
Betalingswijze free
Ondersteunde Talen en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "__MSG_appName__",
    "version": "0.0.10",
    "manifest_version": 2,
    "description": "__MSG_appDescription__",
    "icons": {
        "16": "images\/icon-16.png",
        "128": "images\/icon-128.png"
    },
    "default_locale": "en",
    "background": {
        "scripts": [
            "scripts\/background.js"
        ]
    },
    "options_page": "options.html",
    "content_scripts": [
        {
            "matches": [
                "http:\/\/trello.com\/*",
                "https:\/\/trello.com\/*"
            ],
            "js": [
                "scripts\/contentscript.js"
            ],
            "run_at": "document_end",
            "all_frames": false
        }
    ]
}