Google Result Counter

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

Cos'è Google Result Counter?

Google Result Counter è un'estensione di Chrome sviluppata da Paul Lukic, e la sua funzione principale è "Automatically counts your Google search results and displays the number of results in the title of the result.".

Screenshot dell'Estensione

screenshot
screenshot

Scarica il file CRX dell'estensione Google Result Counter

Scarica i file di estensione Google Result Counter in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        Do not forget to enable counter upon installation!

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

Informazioni di Base sull'Estensione

Nome Google Result Counter Google Result Counter
ID oijjnonbajbomjimdmfchfjadndnhfgp
URL Ufficiale https://chromewebstore.google.com/detail/google-result-counter/oijjnonbajbomjimdmfchfjadndnhfgp
Descrizione Automatically counts your Google search results and displays the number of results in the title of the result.
Dimensione del File 117 KB
Conteggio Installazioni 646
Versione Corrente 1.0.4
Ultimo Aggiornamento 2023-08-01
Data di Pubblicazione 2023-07-14
Valutazione 4.33/5 Totale 6 Valutazioni
Sviluppatore Paul Lukic
Email [email protected]
Tipo di Pagamento free
Sito Web dell'Estensione https://github.com/paullukic/google-search-counter
URL della Pagina di Aiuto https://www.linkedin.com/in/paul-lukic/
Lingue Supportate 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"
            ]
        }
    ]
}