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.

Cos'è Word Counter?

Word Counter è un'estensione di Chrome sviluppata da mileswiesenthal, e la sua funzione principale è "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.".

Scarica il file CRX dell'estensione Word Counter

Scarica i file di estensione Word Counter in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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.                    

Informazioni di Base sull'Estensione

Nome Word Counter Word Counter
ID genbfnkneekjmppgniacjffdphjgadpd
URL Ufficiale https://chrome.google.com/webstore/detail/word-counter/genbfnkneekjmppgniacjffdphjgadpd
Descrizione 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.
Dimensione del File 359 KB
Conteggio Installazioni 19
Versione Corrente 1.0
Ultimo Aggiornamento 2017-08-07
Data di Pubblicazione 2017-08-07
Valutazione 1.00/5 Totale 1 Valutazioni
Sviluppatore mileswiesenthal
Tipo di Pagamento free
Lingue Supportate 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:\/\/*\/*"
    ]
}