Tally Word Counter

Easily count the number of words, characters, and paragraphs on any site. Right click on any selected text and click Count.

O que é Tally Word Counter?

Tally Word Counter é uma extensão do Chrome desenvolvida por https://tallywordcounter.online, e sua principal característica é "Easily count the number of words, characters, and paragraphs on any site. Right click on any selected text and click Count.".

Capturas de Tela da Extensão

screenshot
screenshot
screenshot
screenshot

Baixar o arquivo CRX da Extensão Tally Word Counter

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

                        Your favorite character counter! Tally is a Chrome extension to easily count the number of words, characters, and paragraphs on any site. Right click on any selected text and click Count to see the number of characters, words, sentences, paragraphs, spaces, letters, digits, and special characters in your text.

Visit tallywordcounter.online for the full site.                    

Informações Básicas da Extensão

Nome Tally Word Counter Tally Word Counter
ID eggkmbghbmjmbdjloifaklghfiecjbnk
URL Oficial https://chromewebstore.google.com/detail/tally-word-counter/eggkmbghbmjmbdjloifaklghfiecjbnk
Descrição Easily count the number of words, characters, and paragraphs on any site. Right click on any selected text and click Count.
Tamanho do Arquivo 13.05 KB
Contagem de Instalações 331
Versão Atual 1.1
Última Atualização 2019-06-06
Data de Publicação 2019-05-31
Classificação 2.67/5 Total de 6 Avaliações
Desenvolvedor https://tallywordcounter.online
Email [email protected]
Tipo de Pagamento free
Idiomas Suportados en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Tally Word Counter",
    "short_name": "Tally",
    "description": "Easily count the number of words, characters, and paragraphs on any site. Right click on any selected text and click Count.",
    "version": "1.1",
    "icons": {
        "128": "128.png",
        "48": "48.png",
        "32": "32.png",
        "16": "16.png"
    },
    "permissions": [
        "contextMenus",
        "activeTab"
    ],
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*\/*"
            ],
            "js": [
                "content.js"
            ],
            "css": [
                "style.css"
            ]
        }
    ],
    "manifest_version": 2
}