Google Result Counter

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

Co je Google Result Counter?

Google Result Counter je rozšíření Chrome vyvinuté Paul Lukic, a jeho hlavní funkcí je „Automatically counts your Google search results and displays the number of results in the title of the result.“.

Snímky obrazovky rozšíření

screenshot
screenshot

Stáhnout soubor CRX rozšíření Google Result Counter

Stáhněte si soubory rozšíření Google Result Counter ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.

Pokyny pro Použití Rozšíření

                        Do not forget to enable counter upon installation!

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

Základní Informace o Rozšíření

Název Google Result Counter Google Result Counter
ID oijjnonbajbomjimdmfchfjadndnhfgp
Oficiální URL https://chromewebstore.google.com/detail/google-result-counter/oijjnonbajbomjimdmfchfjadndnhfgp
Popis Automatically counts your Google search results and displays the number of results in the title of the result.
Velikost souboru 117 KB
Počet instalací 646
Aktuální Verze 1.0.4
Poslední Aktualizace 2023-08-01
Datum Vydání 2023-07-14
Hodnocení 4.33/5 Celkem 6 Hodnocení
Vývojář Paul Lukic
E-mail [email protected]
Typ Platby free
Webové stránky Rozšíření https://github.com/paullukic/google-search-counter
URL Stránky Nápovědy https://www.linkedin.com/in/paul-lukic/
Podporované Jazyky 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"
            ]
        }
    ]
}