Word Counter

Displays word count in the extensions toolbar.

What is Word Counter?

Word Counter is a Chrome extension developed by chriham3, and its main feature is "Displays word count in the extensions toolbar.".

Extension Screenshots

screenshot

Download Word Counter Extension CRX File

Download Word Counter 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

                        Simple word counting extension. Simply select the text you wish to count, and the word count will appear on the icon at the extensions bar in the top right corner.                    

Extension Basic Information

Name Word Counter Word Counter
ID ipmlaaleafabnehpmokomegjjodbmoik
Official URL https://chromewebstore.google.com/detail/word-counter/ipmlaaleafabnehpmokomegjjodbmoik
Description Displays word count in the extensions toolbar.
File Size 9.84 KB
Installation Count 411
Current Version 0.2
Last Updated 2017-12-05
Publish Date 2017-12-04
Rating 4.00/5 Total 7 Ratings
Developer chriham3
Payment Type free
Supported Languages en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Word Counter",
    "description": "Displays word count in the extensions toolbar.",
    "version": "0.2",
    "permissions": [
        "activeTab"
    ],
    "icons": {
        "32": "icon32.png",
        "48": "icon32.png",
        "128": "icon32.png"
    },
    "browser_action": {
        "default_icon": "icon32.png",
        "default_title": "Word Counter",
        "default_popup": "instructions.html"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "checker.js"
            ]
        }
    ],
    "background": {
        "scripts": [
            "wordcounter.js"
        ]
    }
}