Word Count

Display the number of words and characters within highlight in contextMenu and bottom right

O que é Word Count?

Word Count é uma extensão do Chrome desenvolvida por Zeno, e sua principal característica é "Display the number of words and characters within highlight in contextMenu and bottom right".

Capturas de Tela da Extensão

screenshot
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

                        Display the number of words and characters within highlight in context menu and bottom right

On highlight, show the word count and the number of characters immediately.

Settings to change to 
- dark count box 
- hide count box

Chrome extension word counter to easily count words & characters                    

Informações Básicas da Extensão

Nome Word Count Word Count
ID inaklojbeljbfmkkpjfmjjgehckpeohf
URL Oficial https://chromewebstore.google.com/detail/word-count/inaklojbeljbfmkkpjfmjjgehckpeohf
Descrição Display the number of words and characters within highlight in contextMenu and bottom right
Tamanho do Arquivo 15.59 KB
Contagem de Instalações 53
Versão Atual 0.2
Última Atualização 2022-06-09
Data de Publicação 2022-06-09
Desenvolvedor Zeno
Email [email protected]
Tipo de Pagamento free
Site da Extensão https://www.buymeacoffee.com/WhyNotBeFrg
Idiomas Suportados en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Word Count",
    "version": "0.2",
    "description": "Display the number of words and characters within highlight in contextMenu and bottom right",
    "icons": {
        "16": "icons\/logo.png",
        "48": "icons\/logo.png",
        "128": "icons\/logo.png"
    },
    "permissions": [
        "tabs",
        "contextMenus",
        "scripting",
        "storage"
    ],
    "background": {
        "service_worker": "background.js"
    },
    "host_permissions": [
        "http:\/\/*\/*",
        "https:\/\/*\/*"
    ],
    "action": {
        "default_title": "test",
        "default_popup": "key.html"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*\/*"
            ],
            "js": [
                "test.js"
            ]
        }
    ]
}