Google Result Counter

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

Wat is Google Result Counter?

Google Result Counter is een Chrome-extensie ontwikkeld door Paul Lukic, en de belangrijkste functie is "Automatically counts your Google search results and displays the number of results in the title of the result.".

Extensie Screenshots

screenshot
screenshot

Download het CRX-bestand van de extensie Google Result Counter

Download Google Result Counter-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                        Do not forget to enable counter upon installation!

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

Basisinformatie over de Extensie

Naam Google Result Counter Google Result Counter
ID oijjnonbajbomjimdmfchfjadndnhfgp
Officiële URL https://chromewebstore.google.com/detail/google-result-counter/oijjnonbajbomjimdmfchfjadndnhfgp
Beschrijving Automatically counts your Google search results and displays the number of results in the title of the result.
Bestandsgrootte 117 KB
Aantal Installaties 646
Huidige Versie 1.0.4
Laatst Bijgewerkt 2023-08-01
Publicatiedatum 2023-07-14
Beoordeling 4.33/5 Totaal 6 Beoordelingen
Ontwikkelaar Paul Lukic
E-mail [email protected]
Betalingswijze free
Extensiewebsite https://github.com/paullukic/google-search-counter
Help Pagina-URL https://www.linkedin.com/in/paul-lukic/
Ondersteunde Talen 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"
            ]
        }
    ]
}