Google Result Counter

Automatically counts your Google search results and displays the number of results in the title of the result.

O que é Google Result Counter?

Google Result Counter é uma extensão do Chrome desenvolvida por Paul Lukic, e sua principal característica é "Automatically counts your Google search results and displays the number of results in the title of the result.".

Capturas de Tela da Extensão

screenshot
screenshot

Baixar o arquivo CRX da Extensão Google Result Counter

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

                        Do not forget to enable counter upon installation!

Update 1.0.4
 - Fixed counting header for images.
 - Fixed extension firing on wordpress.                    

Informações Básicas da Extensão

Nome Google Result Counter Google Result Counter
ID oijjnonbajbomjimdmfchfjadndnhfgp
URL Oficial https://chromewebstore.google.com/detail/google-result-counter/oijjnonbajbomjimdmfchfjadndnhfgp
Descrição Automatically counts your Google search results and displays the number of results in the title of the result.
Tamanho do Arquivo 117 KB
Contagem de Instalações 646
Versão Atual 1.0.4
Última Atualização 2023-08-01
Data de Publicação 2023-07-14
Classificação 4.33/5 Total de 6 Avaliações
Desenvolvedor Paul Lukic
Email [email protected]
Tipo de Pagamento free
Site da Extensão https://github.com/paullukic/google-search-counter
URL da Página de Ajuda https://www.linkedin.com/in/paul-lukic/
Idiomas Suportados en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Google Result Counter",
    "version": "1.0.4",
    "description": "Automatically counts your Google search results and displays the number of results in the title of the result.",
    "permissions": [
        "storage"
    ],
    "host_permissions": [
        "https:\/\/google.com\/*"
    ],
    "action": {
        "default_popup": "popup.html",
        "default_icon": {
            "16": "icon16.png",
            "48": "icon48.png",
            "128": "icon128.png"
        }
    },
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "background": {
        "service_worker": "background.js"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "content.js"
            ]
        }
    ]
}