Word Counter

Estimates how many words you read in selected language

Co je Word Counter?

Word Counter je rozšíření Chrome vyvinuté tobecomebig, a jeho hlavní funkcí je „Estimates how many words you read in selected language“.

Snímky obrazovky rozšíření

screenshot

Stáhnout soubor CRX rozšíření Word Counter

Stáhněte si soubory rozšíření Word Counter ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.

Pokyny pro Použití Rozšíření

                        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.                    

Základní Informace o Rozšíření

Název Word Counter Word Counter
ID dkgjjjoaomepomilhkpoccnlcibihnac
Oficiální URL https://chrome.google.com/webstore/detail/word-counter/dkgjjjoaomepomilhkpoccnlcibihnac
Popis Estimates how many words you read in selected language
Velikost souboru 43.16 KB
Počet instalací 10
Aktuální Verze 0.2
Poslední Aktualizace 2014-03-10
Datum Vydání 2014-03-10
Vývojář tobecomebig
Typ Platby free
Podporované Jazyky 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"
    }
}