Word Count

Counts the words in the document selection and text entry.

O que é Word Count?

Word Count é uma extensão do Chrome desenvolvida por shawn.hoover, e sua principal característica é "Counts the words in the document selection and text entry.".

Capturas de Tela da Extensão

screenshot
screenshot

Baixar o arquivo CRX da Extensão Word Count

Baixe arquivos de extensão Word Count 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

                        Counts the words in the document selection and text entry. The count is displayed in an icon in the location bar. Use this to track word counts as you type or if you're curious how many words are in part of a web page.                    

Informações Básicas da Extensão

Nome Word Count Word Count
ID cipmjkgfjmkcmjfoidhpjfoihkgggmfk
URL Oficial https://chrome.google.com/webstore/detail/word-count/cipmjkgfjmkcmjfoidhpjfoihkgggmfk
Descrição Counts the words in the document selection and text entry.
Tamanho do Arquivo 9.76 KB
Contagem de Instalações 195
Versão Atual 0.4
Última Atualização 2015-07-30
Data de Publicação 2015-07-30
Classificação 3.14/5 Total de 7 Avaliações
Desenvolvedor shawn.hoover
Tipo de Pagamento free
Site da Extensão https://bitbucket.org/shoover/word-count-ext
Idiomas Suportados en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Word Count",
    "version": "0.4",
    "author": "Shawn Hoover",
    "manifest_version": 2,
    "description": "Counts the words in the document selection and text entry.",
    "icons": {
        "64": "logo64.png",
        "128": "logo128.png"
    },
    "permissions": [
        "tabs"
    ],
    "page_action": {
        "default_title": "Word Count"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "content.js"
            ]
        }
    ],
    "background": {
        "scripts": [
            "background.js"
        ]
    }
}