Word Counter

Displays word count in the extensions toolbar.

Was ist Word Counter?

Word Counter ist eine Chrome-Erweiterung, die von chriham3 entwickelt wurde, und ihr Hauptmerkmal ist "Displays word count in the extensions toolbar.".

Erweiterungsscreenshots

screenshot

Word Counter-Erweiterungs-CRX-Datei herunterladen

Laden Sie Word Counter-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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.                    

Grundlegende Informationen zur Erweiterung

Name Word Counter Word Counter
ID ipmlaaleafabnehpmokomegjjodbmoik
Offizielle URL https://chromewebstore.google.com/detail/word-counter/ipmlaaleafabnehpmokomegjjodbmoik
Beschreibung Displays word count in the extensions toolbar.
Dateigröße 9.84 KB
Installationsanzahl 411
Aktuelle Version 0.2
Letztes Update 2017-12-05
Veröffentlichungsdatum 2017-12-04
Bewertung 4.00/5 Insgesamt 7 Bewertungen
Entwickler chriham3
Zahlungsart free
Unterstützte Sprachen 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"
        ]
    }
}