Google Result Counter

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

Apa itu Google Result Counter?

Google Result Counter adalah ekstensi Chrome yang dikembangkan oleh Paul Lukic, dan fitur utamanya adalah "Automatically counts your Google search results and displays the number of results in the title of the result.".

Screenshot Ekstensi

screenshot
screenshot

Unduh Berkas CRX Ekstensi Google Result Counter

Unduh file ekstensi Google Result Counter dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.

Petunjuk Penggunaan Ekstensi

                        Do not forget to enable counter upon installation!

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

Informasi Dasar Ekstensi

Nama Google Result Counter Google Result Counter
ID oijjnonbajbomjimdmfchfjadndnhfgp
URL Resmi https://chromewebstore.google.com/detail/google-result-counter/oijjnonbajbomjimdmfchfjadndnhfgp
Deskripsi Automatically counts your Google search results and displays the number of results in the title of the result.
Ukuran File 117 KB
Jumlah Instalasi 646
Versi Saat Ini 1.0.4
Terakhir Diperbarui 2023-08-01
Tanggal Publikasi 2023-07-14
Penilaian 4.33/5 Total 6 Penilaian
Pengembang Paul Lukic
Email [email protected]
Tipe Pembayaran free
Situs Ekstensi https://github.com/paullukic/google-search-counter
URL Halaman Bantuan https://www.linkedin.com/in/paul-lukic/
Bahasa yang Didukung 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"
            ]
        }
    ]
}