Word Counter

Estimates how many words you read in selected language

Qu'est-ce que Word Counter ?

Word Counter est une extension Chrome développée par tobecomebig, et sa fonction principale est "Estimates how many words you read in selected language".

Captures d'Écran de l'Extension

screenshot

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

Téléchargez les fichiers d'extension Word Counter 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

                        Aren't you interested in knowing how many words approximately you do read for the day?
This extension counts the number of words. The best way to use this extension is when you are learning foreign languages!!

The app counts up words in language you select. English (default), French, and Spanish are available.

****** Notice ******
・The extension does not count how many words in some web pages.
・The number of words is estimate. That measures the total number of words in web pages and add half of it assuming you read.                    

Informations de Base sur l'Extension

Nom Word Counter Word Counter
ID dkgjjjoaomepomilhkpoccnlcibihnac
URL Officiel https://chrome.google.com/webstore/detail/word-counter/dkgjjjoaomepomilhkpoccnlcibihnac
Description Estimates how many words you read in selected language
Taille du Fichier 43.16 KB
Nombre d'Installations 10
Version Actuelle 0.2
Dernière Mise à Jour 2014-03-10
Date de Publication 2014-03-10
Développeur tobecomebig
Type de Paiement free
Langues Prises en Charge en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Word Counter",
    "version": "0.2",
    "manifest_version": 2,
    "description": "Estimates how many words you read in selected language",
    "permissions": [
        "activeTab",
        "tabs",
        "http:\/\/*\/*",
        "https:\/\/*\/*"
    ],
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "jquery.js",
                "countUp.min.copy.js",
                "content_script.js"
            ]
        }
    ],
    "browser_action": {
        "default_icon": "icon.png",
        "default_title": "Word Counter",
        "default_popup": "popup.html"
    }
}