Word Counter

Estimates how many words you read in selected language

Was ist Word Counter?

Word Counter ist eine Chrome-Erweiterung, die von tobecomebig entwickelt wurde, und ihr Hauptmerkmal ist "Estimates how many words you read in selected language".

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

                        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.                    

Grundlegende Informationen zur Erweiterung

Name Word Counter Word Counter
ID dkgjjjoaomepomilhkpoccnlcibihnac
Offizielle URL https://chrome.google.com/webstore/detail/word-counter/dkgjjjoaomepomilhkpoccnlcibihnac
Beschreibung Estimates how many words you read in selected language
Dateigröße 43.16 KB
Installationsanzahl 10
Aktuelle Version 0.2
Letztes Update 2014-03-10
Veröffentlichungsdatum 2014-03-10
Entwickler tobecomebig
Zahlungsart free
Unterstützte Sprachen 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"
    }
}