Google Result Counter

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

Co to jest Google Result Counter?

Google Result Counter to rozszerzenie Chrome opracowane przez Paul Lukic, a jego główną funkcją jest „Automatically counts your Google search results and displays the number of results in the title of the result.”.

Zrzuty ekranu rozszerzenia

screenshot
screenshot

Pobierz plik CRX rozszerzenia Google Result Counter

Pobierz pliki rozszerzeń Google Result Counter w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        Do not forget to enable counter upon installation!

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

Podstawowe informacje o rozszerzeniu

Nazwa Google Result Counter Google Result Counter
ID oijjnonbajbomjimdmfchfjadndnhfgp
Oficjalny URL https://chromewebstore.google.com/detail/google-result-counter/oijjnonbajbomjimdmfchfjadndnhfgp
Opis Automatically counts your Google search results and displays the number of results in the title of the result.
Rozmiar pliku 117 KB
Liczba instalacji 646
Aktualna Wersja 1.0.4
Ostatnia Aktualizacja 2023-08-01
Data Publikacji 2023-07-14
Ocena 4.33/5 Łącznie 6 Oceny
Deweloper Paul Lukic
E-mail [email protected]
Typ Płatności free
Strona Rozszerzenia https://github.com/paullukic/google-search-counter
Adres URL Strony Pomocy https://www.linkedin.com/in/paul-lukic/
Obsługiwane Języki 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"
            ]
        }
    ]
}