Word Count

Counts the words in the document selection and text entry.

What is Word Count?

Word Count is a Chrome extension developed by shawn.hoover, and its main feature is "Counts the words in the document selection and text entry.".

Extension Screenshots

screenshot
screenshot

Download Word Count Extension CRX File

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

                        Counts the words in the document selection and text entry. The count is displayed in an icon in the location bar. Use this to track word counts as you type or if you're curious how many words are in part of a web page.                    

Extension Basic Information

Name Word Count Word Count
ID cipmjkgfjmkcmjfoidhpjfoihkgggmfk
Official URL https://chrome.google.com/webstore/detail/word-count/cipmjkgfjmkcmjfoidhpjfoihkgggmfk
Description Counts the words in the document selection and text entry.
File Size 9.76 KB
Installation Count 195
Current Version 0.4
Last Updated 2015-07-30
Publish Date 2015-07-30
Rating 3.14/5 Total 7 Ratings
Developer shawn.hoover
Payment Type free
Extension Website https://bitbucket.org/shoover/word-count-ext
Supported Languages en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Word Count",
    "version": "0.4",
    "author": "Shawn Hoover",
    "manifest_version": 2,
    "description": "Counts the words in the document selection and text entry.",
    "icons": {
        "64": "logo64.png",
        "128": "logo128.png"
    },
    "permissions": [
        "tabs"
    ],
    "page_action": {
        "default_title": "Word Count"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "content.js"
            ]
        }
    ],
    "background": {
        "scripts": [
            "background.js"
        ]
    }
}