Google Result Counter

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

Vad är Google Result Counter?

Google Result Counter är en Chrome-tillägg utvecklad av Paul Lukic, och dess huvudfunktion är "Automatically counts your Google search results and displays the number of results in the title of the result.".

Tilläggsskärmbilder

screenshot
screenshot

Ladda ner Google Result Counter-förlängningens CRX-fil

Ladda ner Google Result Counter-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        Do not forget to enable counter upon installation!

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

Grundläggande Information om Tillägg

Namn Google Result Counter Google Result Counter
ID oijjnonbajbomjimdmfchfjadndnhfgp
Officiell webbadress https://chromewebstore.google.com/detail/google-result-counter/oijjnonbajbomjimdmfchfjadndnhfgp
Beskrivning Automatically counts your Google search results and displays the number of results in the title of the result.
Filstorlek 117 KB
Antal Installationer 646
Aktuell Version 1.0.4
Senast Uppdaterad 2023-08-01
Publiceringsdatum 2023-07-14
Betyg 4.33/5 Totalt 6 Betyg
Utvecklare Paul Lukic
E-post [email protected]
Betalningssätt free
Tilläggswebbplats https://github.com/paullukic/google-search-counter
Hjälpsida URL https://www.linkedin.com/in/paul-lukic/
Stödda Språk 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"
            ]
        }
    ]
}