Google Analytics Realtime Favicon

Replaces the Google Analytics favicon with a real time count of your site's visitors.

Apa itu Google Analytics Realtime Favicon?

Google Analytics Realtime Favicon adalah ekstensi Chrome yang dikembangkan oleh brendonboshell, dan fitur utamanya adalah "Replaces the Google Analytics favicon with a real time count of your site's visitors.".

Screenshot Ekstensi

screenshot

Unduh Berkas CRX Ekstensi Google Analytics Realtime Favicon

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

                        This extensions adds the realtime user count from Google Analytics's Realtime tab into the favicon. This allows you to use Google Analytics as a pinned tab, but still get a live count of visitors.                    

Informasi Dasar Ekstensi

Nama Google Analytics Realtime Favicon Google Analytics Realtime Favicon
ID hlgebiiefbpiamgdhoheckclfgbkklkh
URL Resmi https://chromewebstore.google.com/detail/google-analytics-realtime/hlgebiiefbpiamgdhoheckclfgbkklkh
Deskripsi Replaces the Google Analytics favicon with a real time count of your site's visitors.
Ukuran File 13.85 KB
Jumlah Instalasi 111
Versi Saat Ini 1.0
Terakhir Diperbarui 2016-05-23
Tanggal Publikasi 2016-05-23
Pengembang brendonboshell
Tipe Pembayaran free
Bahasa yang Didukung en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Google Analytics Realtime Favicon",
    "description": "Replaces the Google Analytics favicon with a real time count of your site's visitors.",
    "version": "1.0",
    "background": {
        "persistent": false,
        "scripts": [
            "background.js"
        ]
    },
    "icons": {
        "64": "icon64.png"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/analytics.google.com\/*"
            ],
            "js": [
                "tinycon.js",
                "replacefavicon.js"
            ]
        }
    ],
    "permissions": [
        "*:\/\/analytics.google.com\/",
        "*:\/\/ssl.gstatic.com\/",
        "tabs"
    ]
}