Trello Points

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

Hvad er Trello Points?

Trello Points er en Chrome-udvidelse udviklet af nstetich, og dens hovedfunktion er "Sums points for a Trello column when cards have associated points as labels".

Udvidelsesskærmbilleder

screenshot

Download Trello Points-udvidelses-CRX-fil

Download Trello Points-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.

Brugsanvisning til Udvidelsen

                        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.                    

Grundlæggende oplysninger om udvidelsen

Navn Trello Points Trello Points
ID goigmjpaehddoikooikbblloogaijjpo
Officiel URL https://chromewebstore.google.com/detail/trello-points/goigmjpaehddoikooikbblloogaijjpo
Beskrivelse Sums points for a Trello column when cards have associated points as labels
Filstørrelse 15.17 KB
Antal Installationer 22
Nuværende Version 0.0.10
Senest Opdateret 2016-03-10
Udgivelsesdato 2016-03-10
Bedømmelse 4.00/5 Samlet 3 Bedømmelser
Udvikler nstetich
E-mail [email protected]
Betalingsmetode free
Understøttede Sprog 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
        }
    ]
}