Textbox Character Count

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

¿Qué es Textbox Character Count?

Textbox Character Count es una extensión de Chrome desarrollada por Michael Slevin, y su función principal es "Counts the number of non-whitespace characters in textboxes and places the count above them.".

Capturas de Pantalla de la Extensión

screenshot

Descargar Archivo CRX de la Extensión Textbox Character Count

Descarga archivos de extensión Textbox Character Count en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.

Instrucciones de Uso de la Extensión

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

Información Básica de la Extensión

Nombre Textbox Character Count Textbox Character Count
ID pfpmdncabdmdfboaikkaekpmppdolaci
URL Oficial https://chromewebstore.google.com/detail/textbox-character-count/pfpmdncabdmdfboaikkaekpmppdolaci
Descripción Counts the number of non-whitespace characters in textboxes and places the count above them.
Tamaño del Archivo 4.13 KB
Cantidad de Instalaciones 34
Versión Actual 1.0
Última Actualización 2014-08-25
Fecha de Publicación 2014-08-24
Desarrollador Michael Slevin
Tipo de Pago free
Idiomas Soportados 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"
    ]
}