Google Result Counter

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

What is Google Result Counter?

Google Result Counter is a Chrome extension developed by Paul Lukic, and its main feature is "Automatically counts your Google search results and displays the number of results in the title of the result.".

Extension Screenshots

screenshot
screenshot

Download Google Result Counter Extension CRX File

Download Google Result Counter extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        Do not forget to enable counter upon installation!

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

Extension Basic Information

Name Google Result Counter Google Result Counter
ID oijjnonbajbomjimdmfchfjadndnhfgp
Official URL https://chromewebstore.google.com/detail/google-result-counter/oijjnonbajbomjimdmfchfjadndnhfgp
Description Automatically counts your Google search results and displays the number of results in the title of the result.
File Size 117 KB
Installation Count 646
Current Version 1.0.4
Last Updated 2023-08-01
Publish Date 2023-07-14
Rating 4.33/5 Total 6 Ratings
Developer Paul Lukic
Email [email protected]
Payment Type free
Extension Website https://github.com/paullukic/google-search-counter
Help Page URL https://www.linkedin.com/in/paul-lukic/
Supported Languages 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"
            ]
        }
    ]
}