Word Counter

Estimates how many words you read in selected language

Что такое Word Counter?

Word Counter - это расширение Chrome, разработанное tobecomebig, и его основная функция - "Estimates how many words you read in selected language".

Снимки экрана расширения

screenshot

Скачать файл CRX расширения Word Counter

Скачайте файлы расширений Word Counter в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.

Инструкции по использованию расширения

                        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.                    

Основная информация о расширении

Название Word Counter Word Counter
ID dkgjjjoaomepomilhkpoccnlcibihnac
Официальный URL https://chrome.google.com/webstore/detail/word-counter/dkgjjjoaomepomilhkpoccnlcibihnac
Описание Estimates how many words you read in selected language
Размер файла 43.16 KB
Количество установок 10
Текущая Версия 0.2
Последнее Обновление 2014-03-10
Дата публикации 2014-03-10
Разработчик tobecomebig
Тип оплаты free
Поддерживаемые языки 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"
    }
}