Word Counter

Displays word count in the extensions toolbar.

Cos'è Word Counter?

Word Counter è un'estensione di Chrome sviluppata da chriham3, e la sua funzione principale è "Displays word count in the extensions toolbar.".

Screenshot dell'Estensione

screenshot

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

                        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.                    

Informazioni di Base sull'Estensione

Nome Word Counter Word Counter
ID ipmlaaleafabnehpmokomegjjodbmoik
URL Ufficiale https://chromewebstore.google.com/detail/word-counter/ipmlaaleafabnehpmokomegjjodbmoik
Descrizione Displays word count in the extensions toolbar.
Dimensione del File 9.84 KB
Conteggio Installazioni 411
Versione Corrente 0.2
Ultimo Aggiornamento 2017-12-05
Data di Pubblicazione 2017-12-04
Valutazione 4.00/5 Totale 7 Valutazioni
Sviluppatore chriham3
Tipo di Pagamento free
Lingue Supportate 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"
        ]
    }
}