Google Counter

Counts how many times a day the browser visits the Google search page

Apa itu Google Counter?

Google Counter adalah ekstensi Chrome yang dikembangkan oleh Sindre Bøyum, dan fitur utamanya adalah "Counts how many times a day the browser visits the Google search page".

Unduh Berkas CRX Ekstensi Google Counter

Unduh file ekstensi Google 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

                        Chrome Extension that counts how many times a day the browser Googles.

Check out the code on GitHub: https://github.com/boyum/google-counter/                    

Informasi Dasar Ekstensi

Nama Google Counter Google Counter
ID ocfcmolkmckfebkikmlhfeabaicddeae
URL Resmi https://chromewebstore.google.com/detail/google-counter/ocfcmolkmckfebkikmlhfeabaicddeae
Deskripsi Counts how many times a day the browser visits the Google search page
Ukuran File 11.33 KB
Jumlah Instalasi 266
Versi Saat Ini 1.1.1
Terakhir Diperbarui 2017-04-27
Tanggal Publikasi 2017-04-27
Penilaian 5.00/5 Total 1 Penilaian
Pengembang Sindre Bøyum
Email [email protected]
Tipe Pembayaran free
Situs Ekstensi https://github.com/boyum/google-counter/
Bahasa yang Didukung en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Google Counter",
    "description": "Counts how many times a day the browser visits the Google search page",
    "version": "1.1.1",
    "browser_action": {
        "default_icon": "icon.png",
        "default_popup": "popup.html"
    },
    "permissions": [
        "activeTab",
        "storage",
        ""
    ],
    "background": {
        "scripts": [
            "eventpage.js"
        ],
        "persistent": false
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*\/*"
            ],
            "include_globs": [
                "*:\/\/www.google.*\/*"
            ],
            "js": [
                "counter.js"
            ],
            "css": [
                "styles.css"
            ]
        }
    ]
}