Word Counter

Select text and find how many words and letters are in it by clicking the icon! Also it displays the average letter count per word.

¿Qué es Word Counter?

Word Counter es una extensión de Chrome desarrollada por mileswiesenthal, y su función principal es "Select text and find how many words and letters are in it by clicking the icon! Also it displays the average letter count per word.".

Descargar Archivo CRX de la Extensión Word Counter

Descarga archivos de extensión Word Counter 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

                        Select text and find how many words and letters are in it by clicking the icon! Also it displays the average letter count per word.                    

Información Básica de la Extensión

Nombre Word Counter Word Counter
ID genbfnkneekjmppgniacjffdphjgadpd
URL Oficial https://chrome.google.com/webstore/detail/word-counter/genbfnkneekjmppgniacjffdphjgadpd
Descripción Select text and find how many words and letters are in it by clicking the icon! Also it displays the average letter count per word.
Tamaño del Archivo 359 KB
Cantidad de Instalaciones 19
Versión Actual 1.0
Última Actualización 2017-08-07
Fecha de Publicación 2017-08-07
Calificación 1.00/5 Total de 1 Calificaciones
Desarrollador mileswiesenthal
Tipo de Pago free
Idiomas Soportados en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Word Counter",
    "short_name": "PM",
    "description": "Select text and find how many words and letters are in it by clicking the icon! Also it displays the average letter count per word.",
    "version": "1.0",
    "browser_action": {
        "default_icon": "icon.png",
        "default_popup": "popup.html",
        "default_title": "Word Counter"
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "googleDocsUtil.js"
            ]
        },
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "contentScript.js"
            ]
        }
    ],
    "permissions": [
        "tabs",
        "http:\/\/*\/*",
        "https:\/\/*\/*"
    ]
}