Trello Card Numbers

Places card numbers on Trello cards

Was ist Trello Card Numbers?

Trello Card Numbers ist eine Chrome-Erweiterung, die von hal313 entwickelt wurde, und ihr Hauptmerkmal ist "Places card numbers on Trello cards".

Erweiterungsscreenshots

screenshot

Trello Card Numbers-Erweiterungs-CRX-Datei herunterladen

Laden Sie Trello Card Numbers-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

                        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                    

Grundlegende Informationen zur Erweiterung

Name Trello Card Numbers Trello Card Numbers
ID ijnbgfbpkcnohomlcomegpocpkneblep
Offizielle URL https://chromewebstore.google.com/detail/trello-card-numbers/ijnbgfbpkcnohomlcomegpocpkneblep
Beschreibung Places card numbers on Trello cards
Dateigröße 75.84 KB
Installationsanzahl 609
Aktuelle Version 0.0.10
Letztes Update 2021-04-15
Veröffentlichungsdatum 2018-04-22
Bewertung 4.00/5 Insgesamt 2 Bewertungen
Entwickler hal313
E-Mail [email protected]
Zahlungsart free
Erweiterungswebsite https://github.com/hal313/trello-card-numbers-chrome-extension
Unterstützte Sprachen 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
        }
    ]
}