Textbox Character Count

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

What is Textbox Character Count?

Textbox Character Count is a Chrome extension developed by Michael Slevin, and its main feature is "Counts the number of non-whitespace characters in textboxes and places the count above them.".

Extension Screenshots

screenshot

Download Textbox Character Count Extension CRX File

Download Textbox Character Count extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

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

Extension Basic Information

Name Textbox Character Count Textbox Character Count
ID pfpmdncabdmdfboaikkaekpmppdolaci
Official URL 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.
File Size 4.13 KB
Installation Count 34
Current Version 1.0
Last Updated 2014-08-25
Publish Date 2014-08-24
Developer Michael Slevin
Payment Type free
Supported Languages 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"
    ]
}