Word Counter

Displays word count in the extensions toolbar.

Wat is Word Counter?

Word Counter is een Chrome-extensie ontwikkeld door chriham3, en de belangrijkste functie is "Displays word count in the extensions toolbar.".

Extensie Screenshots

screenshot

Download het CRX-bestand van de extensie Word Counter

Download Word Counter-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                        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.                    

Basisinformatie over de Extensie

Naam Word Counter Word Counter
ID ipmlaaleafabnehpmokomegjjodbmoik
Officiële URL https://chromewebstore.google.com/detail/word-counter/ipmlaaleafabnehpmokomegjjodbmoik
Beschrijving Displays word count in the extensions toolbar.
Bestandsgrootte 9.84 KB
Aantal Installaties 411
Huidige Versie 0.2
Laatst Bijgewerkt 2017-12-05
Publicatiedatum 2017-12-04
Beoordeling 4.00/5 Totaal 7 Beoordelingen
Ontwikkelaar chriham3
Betalingswijze free
Ondersteunde Talen 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"
        ]
    }
}