Word Counter

Counting the amount of a given word in the current page

O que é Word Counter?

Word Counter é uma extensão do Chrome desenvolvida por chatjonsmedia, e sua principal característica é "Counting the amount of a given word in the current page".

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

                        Word Counter is a fun extension that will let the user count how many words appear in a page.                    

Informações Básicas da Extensão

Nome Word Counter Word Counter
ID ledamfbeelplcjfjclabbckmglgkmhdf
URL Oficial https://chrome.google.com/webstore/detail/word-counter/ledamfbeelplcjfjclabbckmglgkmhdf
Descrição Counting the amount of a given word in the current page
Tamanho do Arquivo 14.55 KB
Contagem de Instalações 2,959
Versão Atual 1
Última Atualização 2022-12-05
Data de Publicação 2022-12-05
Desenvolvedor chatjonsmedia
Email [email protected]
Tipo de Pagamento free
Site da Extensão https://home.ujhimselvepost.info/
URL da Página de Ajuda https://home.ujhimselvepost.info/contact.html
Idiomas Suportados en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "description": "Counting the amount of a given word in the current page",
    "icons": {
        "128": "logo.png"
    },
    "action": {
        "default_icon": "logo.png",
        "default_title": "Word Counter",
        "default_popup": "popup.html"
    },
    "manifest_version": 3,
    "name": "Word Counter",
    "version": "1",
    "background": {
        "service_worker": "background.js"
    },
    "permissions": [
        "storage"
    ],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*\/*",
                "http:\/\/*\/*"
            ],
            "js": [
                "content.js"
            ]
        }
    ]
}