Word Counter

Estimates how many words you read in selected language

O que é Word Counter?

Word Counter é uma extensão do Chrome desenvolvida por tobecomebig, e sua principal característica é "Estimates how many words you read in selected language".

Capturas de Tela da Extensão

screenshot

Baixar o arquivo CRX da Extensão Word Counter

Baixe arquivos de extensão Word Counter no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        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.                    

Informações Básicas da Extensão

Nome Word Counter Word Counter
ID dkgjjjoaomepomilhkpoccnlcibihnac
URL Oficial https://chrome.google.com/webstore/detail/word-counter/dkgjjjoaomepomilhkpoccnlcibihnac
Descrição Estimates how many words you read in selected language
Tamanho do Arquivo 43.16 KB
Contagem de Instalações 10
Versão Atual 0.2
Última Atualização 2014-03-10
Data de Publicação 2014-03-10
Desenvolvedor tobecomebig
Tipo de Pagamento free
Idiomas Suportados 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"
    }
}