LabelCounter for Trello

Counts the Card label titles on trello.com

Co to jest LabelCounter for Trello?

LabelCounter for Trello to rozszerzenie Chrome opracowane przez https://rockin.work, a jego główną funkcją jest „Counts the Card label titles on trello.com”.

Zrzuty ekranu rozszerzenia

screenshot
screenshot
screenshot

Pobierz plik CRX rozszerzenia LabelCounter for Trello

Pobierz pliki rozszerzeń LabelCounter for Trello w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        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                    

Podstawowe informacje o rozszerzeniu

Nazwa LabelCounter for Trello LabelCounter for Trello
ID eahijelcdannijiaikdpdpjnhcjoblie
Oficjalny URL https://chromewebstore.google.com/detail/labelcounter-for-trello/eahijelcdannijiaikdpdpjnhcjoblie
Opis Counts the Card label titles on trello.com
Rozmiar pliku 18.45 KB
Liczba instalacji 103
Aktualna Wersja 1.0
Ostatnia Aktualizacja 2018-09-10
Data Publikacji 2018-09-10
Ocena 4.00/5 Łącznie 1 Oceny
Deweloper https://rockin.work
E-mail [email protected]
Typ Płatności free
Strona Rozszerzenia https://github.com/oikwsat/trello-label-counter
Adres URL Strony Pomocy https://github.com/oikwsat/trello-label-counter
Obsługiwane Języki 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\/*"
    ]
}