Word Count

Counts the words in the document selection and text entry.

¿Qué es Word Count?

Word Count es una extensión de Chrome desarrollada por shawn.hoover, y su función principal es "Counts the words in the document selection and text entry.".

Capturas de Pantalla de la Extensión

screenshot
screenshot

Descargar Archivo CRX de la Extensión Word Count

Descarga archivos de extensión Word Count en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.

Instrucciones de Uso de la Extensión

                        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.                    

Información Básica de la Extensión

Nombre Word Count Word Count
ID cipmjkgfjmkcmjfoidhpjfoihkgggmfk
URL Oficial https://chrome.google.com/webstore/detail/word-count/cipmjkgfjmkcmjfoidhpjfoihkgggmfk
Descripción Counts the words in the document selection and text entry.
Tamaño del Archivo 9.76 KB
Cantidad de Instalaciones 195
Versión Actual 0.4
Última Actualización 2015-07-30
Fecha de Publicación 2015-07-30
Calificación 3.14/5 Total de 7 Calificaciones
Desarrollador shawn.hoover
Tipo de Pago free
Sitio Web de la Extensión https://bitbucket.org/shoover/word-count-ext
Idiomas Soportados 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"
        ]
    }
}