Trello Card Numbers

Places card numbers on Trello cards

Co to jest Trello Card Numbers?

Trello Card Numbers to rozszerzenie Chrome opracowane przez hal313, a jego główną funkcją jest „Places card numbers on Trello cards”.

Zrzuty ekranu rozszerzenia

screenshot

Pobierz plik CRX rozszerzenia Trello Card Numbers

Pobierz pliki rozszerzeń Trello Card Numbers 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

                        Adds card numbers (ID's) to Trello cards.

Trello cards have unique ID's associated with them, but they are not displayed. This extension displays the unique ID's of each card in order to visually identify it. This is useful, for example, when a team is discussing a Trello board and prefers to use ID's in place of content for the sake of clarity.

Source code available on GitHub: https://github.com/hal313/trello-card-numbers-chrome-extension                    

Podstawowe informacje o rozszerzeniu

Nazwa Trello Card Numbers Trello Card Numbers
ID ijnbgfbpkcnohomlcomegpocpkneblep
Oficjalny URL https://chromewebstore.google.com/detail/trello-card-numbers/ijnbgfbpkcnohomlcomegpocpkneblep
Opis Places card numbers on Trello cards
Rozmiar pliku 75.84 KB
Liczba instalacji 609
Aktualna Wersja 0.0.10
Ostatnia Aktualizacja 2021-04-15
Data Publikacji 2018-04-22
Ocena 4.00/5 Łącznie 2 Oceny
Deweloper hal313
E-mail [email protected]
Typ Płatności free
Strona Rozszerzenia https://github.com/hal313/trello-card-numbers-chrome-extension
Obsługiwane Języki 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"
        ]
    },
    "page_action": {
        "default_icon": {
            "19": "images\/icon-19.png",
            "38": "images\/icon-38.png"
        },
        "default_title": "Trello Card Numbers"
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*.trello.com\/*",
                "https:\/\/*.trello.com\/*"
            ],
            "js": [
                "scripts\/content.js"
            ],
            "run_at": "document_end",
            "all_frames": false
        }
    ]
}