Sum for Trello

Sum card costs in your Trello board

Was ist Sum for Trello?

Sum for Trello ist eine Chrome-Erweiterung, die von cmb.durand entwickelt wurde, und ihr Hauptmerkmal ist "Sum card costs in your Trello board".

Erweiterungsscreenshots

screenshot

Sum for Trello-Erweiterungs-CRX-Datei herunterladen

Laden Sie Sum 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

                        Trello Sum is a Chrome Extension that adds a little bit of functionality to Trello.com freely adapted/forked from Trello Scrum. Trello Sum allows you to count the visible card sum up total cost of cards per list.
Cost is indicated between () in each card description. Now also works with negative costs since version 0.0.8.                    

Grundlegende Informationen zur Erweiterung

Name Sum for Trello Sum for Trello
ID pkoogihbgjbpeollfnioabeaimjaongg
Offizielle URL https://chromewebstore.google.com/detail/sum-for-trello/pkoogihbgjbpeollfnioabeaimjaongg
Beschreibung Sum card costs in your Trello board
Dateigröße 56.26 KB
Installationsanzahl 1,193
Aktuelle Version 0.0.8
Letztes Update 2018-04-30
Veröffentlichungsdatum 2018-04-30
Bewertung 4.33/5 Insgesamt 9 Bewertungen
Entwickler cmb.durand
E-Mail [email protected]
Zahlungsart free
Unterstützte Sprachen en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Sum for Trello",
    "version": "0.0.8",
    "description": "Sum card costs in your Trello board",
    "content_scripts": [
        {
            "matches": [
                "https:\/\/trello.com\/*"
            ],
            "js": [
                "jquery-2.1.4.min.js",
                "trellosum.js"
            ],
            "css": [
                "trellosum.css"
            ]
        }
    ],
    "manifest_version": 2,
    "icons": {
        "128": "trello-sum-icon.png"
    },
    "web_accessible_resources": [
        "images\/trello-sum-icon_12x12.png",
        "images\/trello-sum-icon_18x18.png"
    ],
    "permissions": [
        "storage"
    ]
}