Trello Card Counter

Card counters and card identifiers for easy collaboration and project management

Cos'è Trello Card Counter?

Trello Card Counter è un'estensione di Chrome sviluppata da Alex Benoit, e la sua funzione principale è "Card counters and card identifiers for easy collaboration and project management".

Screenshot dell'Estensione

screenshot
screenshot

Scarica il file CRX dell'estensione Trello Card Counter

Scarica i file di estensione Trello Card Counter in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        [recently updated, fully working] Trello Card Counter Plus tells you how many cards you have in your lists and board and gives the cards identifiers for easier collaboration and project management. Updated for Trello 2024.                    

Informazioni di Base sull'Estensione

Nome Trello Card Counter Trello Card Counter
ID hepiaakjhimoagmpalbfoojemcnlnagn
URL Ufficiale https://chromewebstore.google.com/detail/trello-card-counter/hepiaakjhimoagmpalbfoojemcnlnagn
Descrizione Card counters and card identifiers for easy collaboration and project management
Dimensione del File 14.12 KB
Conteggio Installazioni 20,000
Versione Corrente 3.0.0
Ultimo Aggiornamento 2023-12-03
Data di Pubblicazione 2017-11-22
Valutazione 3.93/5 Totale 27 Valutazioni
Sviluppatore Alex Benoit
Email [email protected]
Tipo di Pagamento free
URL della Pagina di Aiuto https://alexbenoit.me/
Lingue Supportate en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Trello Card Counter",
    "version": "3.0.0",
    "description": "Card counters and card identifiers for easy collaboration and project management",
    "permissions": [
        "storage"
    ],
    "action": {
        "default_popup": "popup.html"
    },
    "content_scripts": [
        {
            "run_at": "document_idle",
            "matches": [
                "https:\/\/trello.com\/b\/*"
            ],
            "js": [
                "trello-override.js"
            ],
            "css": [
                "trello-override.css"
            ]
        }
    ],
    "icons": {
        "128": "trelloext.png"
    }
}