Word Count

Counts the words in the document selection and text entry.

Qu'est-ce que Word Count ?

Word Count est une extension Chrome développée par shawn.hoover, et sa fonction principale est "Counts the words in the document selection and text entry.".

Captures d'Écran de l'Extension

screenshot
screenshot

Télécharger le fichier CRX de l'extension Word Count

Téléchargez les fichiers d'extension Word Count au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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.                    

Informations de Base sur l'Extension

Nom Word Count Word Count
ID cipmjkgfjmkcmjfoidhpjfoihkgggmfk
URL Officiel https://chrome.google.com/webstore/detail/word-count/cipmjkgfjmkcmjfoidhpjfoihkgggmfk
Description Counts the words in the document selection and text entry.
Taille du Fichier 9.76 KB
Nombre d'Installations 195
Version Actuelle 0.4
Dernière Mise à Jour 2015-07-30
Date de Publication 2015-07-30
Évaluation 3.14/5 Total 7 Évaluations
Développeur shawn.hoover
Type de Paiement free
Site Web de l'Extension https://bitbucket.org/shoover/word-count-ext
Langues Prises en Charge 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"
        ]
    }
}