Textbox Character Count

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

O que é Textbox Character Count?

Textbox Character Count é uma extensão do Chrome desenvolvida por Michael Slevin, e sua principal característica é "Counts the number of non-whitespace characters in textboxes and places the count above them.".

Capturas de Tela da Extensão

screenshot

Baixar o arquivo CRX da Extensão Textbox Character Count

Baixe arquivos de extensão Textbox Character Count no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

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

Informações Básicas da Extensão

Nome Textbox Character Count Textbox Character Count
ID pfpmdncabdmdfboaikkaekpmppdolaci
URL Oficial https://chromewebstore.google.com/detail/textbox-character-count/pfpmdncabdmdfboaikkaekpmppdolaci
Descrição Counts the number of non-whitespace characters in textboxes and places the count above them.
Tamanho do Arquivo 4.13 KB
Contagem de Instalações 34
Versão Atual 1.0
Última Atualização 2014-08-25
Data de Publicação 2014-08-24
Desenvolvedor Michael Slevin
Tipo de Pagamento free
Idiomas Suportados 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"
    ]
}