Textbox Character Count

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

Qu'est-ce que Textbox Character Count ?

Textbox Character Count est une extension Chrome développée par Michael Slevin, et sa fonction principale est "Counts the number of non-whitespace characters in textboxes and places the count above them.".

Captures d'Écran de l'Extension

screenshot

Télécharger le fichier CRX de l'extension Textbox Character Count

Téléchargez les fichiers d'extension Textbox Character Count 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

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

Informations de Base sur l'Extension

Nom Textbox Character Count Textbox Character Count
ID pfpmdncabdmdfboaikkaekpmppdolaci
URL Officiel https://chromewebstore.google.com/detail/textbox-character-count/pfpmdncabdmdfboaikkaekpmppdolaci
Description Counts the number of non-whitespace characters in textboxes and places the count above them.
Taille du Fichier 4.13 KB
Nombre d'Installations 34
Version Actuelle 1.0
Dernière Mise à Jour 2014-08-25
Date de Publication 2014-08-24
Développeur Michael Slevin
Type de Paiement free
Langues Prises en Charge 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"
    ]
}