Word Count

Counts the words in the document selection and text entry.

Was ist Word Count?

Word Count ist eine Chrome-Erweiterung, die von shawn.hoover entwickelt wurde, und ihr Hauptmerkmal ist "Counts the words in the document selection and text entry.".

Erweiterungsscreenshots

screenshot
screenshot

Word Count-Erweiterungs-CRX-Datei herunterladen

Laden Sie Word Count-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

                        Counts the words in the document selection and text entry. The count is displayed in an icon in the location bar. Use this to track word counts as you type or if you're curious how many words are in part of a web page.                    

Grundlegende Informationen zur Erweiterung

Name Word Count Word Count
ID cipmjkgfjmkcmjfoidhpjfoihkgggmfk
Offizielle URL https://chrome.google.com/webstore/detail/word-count/cipmjkgfjmkcmjfoidhpjfoihkgggmfk
Beschreibung Counts the words in the document selection and text entry.
Dateigröße 9.76 KB
Installationsanzahl 195
Aktuelle Version 0.4
Letztes Update 2015-07-30
Veröffentlichungsdatum 2015-07-30
Bewertung 3.14/5 Insgesamt 7 Bewertungen
Entwickler shawn.hoover
Zahlungsart free
Erweiterungswebsite https://bitbucket.org/shoover/word-count-ext
Unterstützte Sprachen en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Word Count",
    "version": "0.4",
    "author": "Shawn Hoover",
    "manifest_version": 2,
    "description": "Counts the words in the document selection and text entry.",
    "icons": {
        "64": "logo64.png",
        "128": "logo128.png"
    },
    "permissions": [
        "tabs"
    ],
    "page_action": {
        "default_title": "Word Count"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "content.js"
            ]
        }
    ],
    "background": {
        "scripts": [
            "background.js"
        ]
    }
}