Trello Card Numbers

Places card numbers on Trello cards

Qu'est-ce que Trello Card Numbers ?

Trello Card Numbers est une extension Chrome développée par hal313, et sa fonction principale est "Places card numbers on Trello cards".

Captures d'Écran de l'Extension

screenshot

Télécharger le fichier CRX de l'extension Trello Card Numbers

Téléchargez les fichiers d'extension Trello Card Numbers au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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                    

Informations de Base sur l'Extension

Nom Trello Card Numbers Trello Card Numbers
ID ijnbgfbpkcnohomlcomegpocpkneblep
URL Officiel https://chromewebstore.google.com/detail/trello-card-numbers/ijnbgfbpkcnohomlcomegpocpkneblep
Description Places card numbers on Trello cards
Taille du Fichier 75.84 KB
Nombre d'Installations 609
Version Actuelle 0.0.10
Dernière Mise à Jour 2021-04-15
Date de Publication 2018-04-22
Évaluation 4.00/5 Total 2 Évaluations
Développeur hal313
Email [email protected]
Type de Paiement free
Site Web de l'Extension https://github.com/hal313/trello-card-numbers-chrome-extension
Langues Prises en Charge 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
        }
    ]
}