Word Counter

Estimates how many words you read in selected language

Co to jest Word Counter?

Word Counter to rozszerzenie Chrome opracowane przez tobecomebig, a jego główną funkcją jest „Estimates how many words you read in selected language”.

Zrzuty ekranu rozszerzenia

screenshot

Pobierz plik CRX rozszerzenia Word Counter

Pobierz pliki rozszerzeń Word Counter w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        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.                    

Podstawowe informacje o rozszerzeniu

Nazwa Word Counter Word Counter
ID dkgjjjoaomepomilhkpoccnlcibihnac
Oficjalny URL https://chrome.google.com/webstore/detail/word-counter/dkgjjjoaomepomilhkpoccnlcibihnac
Opis Estimates how many words you read in selected language
Rozmiar pliku 43.16 KB
Liczba instalacji 10
Aktualna Wersja 0.2
Ostatnia Aktualizacja 2014-03-10
Data Publikacji 2014-03-10
Deweloper tobecomebig
Typ Płatności free
Obsługiwane Języki 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"
    }
}