Word Count on Webpage By Warp Vessel

A simple chrome extension that allows you to instantly see the word count on the current webpage.

O que é Word Count on Webpage By Warp Vessel?

Word Count on Webpage By Warp Vessel é uma extensão do Chrome desenvolvida por Warp Vessel Apps, e sua principal característica é "A simple chrome extension that allows you to instantly see the word count on the current webpage.".

Capturas de Tela da Extensão

screenshot
screenshot

Baixar o arquivo CRX da Extensão Word Count on Webpage By Warp Vessel

Baixe arquivos de extensão Word Count on Webpage By Warp Vessel 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

                        A simple chrome extension that allows you to instantly see the word count on the current webpage.                    

Informações Básicas da Extensão

Nome Word Count on Webpage By Warp Vessel Word Count on Webpage By Warp Vessel
ID poojadbpgpkiokkenipihadhecgphkfh
URL Oficial https://chromewebstore.google.com/detail/word-count-on-webpage-by/poojadbpgpkiokkenipihadhecgphkfh
Descrição A simple chrome extension that allows you to instantly see the word count on the current webpage.
Tamanho do Arquivo 6.48 KB
Contagem de Instalações 321
Versão Atual 1.02
Última Atualização 2019-05-30
Data de Publicação 2019-05-24
Classificação 3.75/5 Total de 4 Avaliações
Desenvolvedor Warp Vessel Apps
Email [email protected]
Tipo de Pagamento free
Idiomas Suportados en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Word Count on Webpage By Warp Vessel",
    "version": "1.02",
    "manifest_version": 2,
    "permissions": [
        "tabs"
    ],
    "icons": {
        "128": "icon.png"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "run_at": "document_end",
            "js": [
                "content.js"
            ]
        }
    ],
    "browser_action": {
        "default_title": "Word Count By Warp Vessel",
        "default_popup": "popup.html"
    },
    "background": {
        "scripts": [
            "background.js"
        ]
    }
}