LabelCounter for Trello

Counts the Card label titles on trello.com

Was ist LabelCounter for Trello?

LabelCounter for Trello ist eine Chrome-Erweiterung, die von https://rockin.work entwickelt wurde, und ihr Hauptmerkmal ist "Counts the Card label titles on trello.com".

Erweiterungsscreenshots

screenshot
screenshot
screenshot

LabelCounter for Trello-Erweiterungs-CRX-Datei herunterladen

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

                        This Extension counts cards and label texts, display it.
It will use the card labels for time. ex.) 1h, 2h, 4h, 8h

Required environment
* Trello.com
* install Card Color Titles for Trello Chrome Extension.
    * for display of label texts.
* Setting name of labels in Trello: 0.5h, 1h, 2h, 4h, 8h                    

Grundlegende Informationen zur Erweiterung

Name LabelCounter for Trello LabelCounter for Trello
ID eahijelcdannijiaikdpdpjnhcjoblie
Offizielle URL https://chromewebstore.google.com/detail/labelcounter-for-trello/eahijelcdannijiaikdpdpjnhcjoblie
Beschreibung Counts the Card label titles on trello.com
Dateigröße 18.45 KB
Installationsanzahl 103
Aktuelle Version 1.0
Letztes Update 2018-09-10
Veröffentlichungsdatum 2018-09-10
Bewertung 4.00/5 Insgesamt 1 Bewertungen
Entwickler https://rockin.work
E-Mail [email protected]
Zahlungsart free
Erweiterungswebsite https://github.com/oikwsat/trello-label-counter
Hilfeseite URL https://github.com/oikwsat/trello-label-counter
Unterstützte Sprachen en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "LabelCounter for Trello",
    "description": "Counts the Card label titles on trello.com",
    "version": "1.0",
    "icons": {
        "16": "icons\/icon16.png",
        "48": "icons\/icon48.png",
        "128": "icons\/icon128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/trello.com\/b\/*"
            ],
            "js": [
                "js\/injector.js"
            ]
        }
    ],
    "web_accessible_resources": [
        "js\/embeded.js"
    ],
    "permissions": [
        "https:\/\/trello.com\/b\/*"
    ]
}