Textbox Character Count

Counts the number of non-whitespace characters in textboxes and places the count above them.

Cos'è Textbox Character Count?

Textbox Character Count è un'estensione di Chrome sviluppata da Michael Slevin, e la sua funzione principale è "Counts the number of non-whitespace characters in textboxes and places the count above them.".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione Textbox Character Count

Scarica i file di estensione Textbox Character Count 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

                        Chrome extension to display character counts above text boxes. ONLY works on Professor Staley's IHS course pages.                    

Informazioni di Base sull'Estensione

Nome Textbox Character Count Textbox Character Count
ID pfpmdncabdmdfboaikkaekpmppdolaci
URL Ufficiale https://chromewebstore.google.com/detail/textbox-character-count/pfpmdncabdmdfboaikkaekpmppdolaci
Descrizione Counts the number of non-whitespace characters in textboxes and places the count above them.
Dimensione del File 4.13 KB
Conteggio Installazioni 34
Versione Corrente 1.0
Ultimo Aggiornamento 2014-08-25
Data di Pubblicazione 2014-08-24
Sviluppatore Michael Slevin
Tipo di Pagamento free
Lingue Supportate en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Textbox Character Count",
    "version": "1.0",
    "manifest_version": 2,
    "homepage_url": "https:\/\/github.com\/mslevin",
    "description": "Counts the number of non-whitespace characters in textboxes and places the count above them.",
    "content_scripts": [
        {
            "js": [
                "inject.js"
            ],
            "matches": [
                "http:\/\/cstaley.csc.calpoly.edu:8080\/*",
                "https:\/\/cstaley.csc.calpoly.edu:8080\/*"
            ]
        }
    ],
    "web_accessible_resources": [
        "script.js"
    ]
}