Google Analytics Realtime Favicon

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

Co to jest Google Analytics Realtime Favicon?

Google Analytics Realtime Favicon to rozszerzenie Chrome opracowane przez brendonboshell, a jego główną funkcją jest „Replaces the Google Analytics favicon with a real time count of your site's visitors.”.

Zrzuty ekranu rozszerzenia

screenshot

Pobierz plik CRX rozszerzenia Google Analytics Realtime Favicon

Pobierz pliki rozszerzeń Google Analytics Realtime Favicon 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

                        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.                    

Podstawowe informacje o rozszerzeniu

Nazwa Google Analytics Realtime Favicon Google Analytics Realtime Favicon
ID hlgebiiefbpiamgdhoheckclfgbkklkh
Oficjalny URL https://chromewebstore.google.com/detail/google-analytics-realtime/hlgebiiefbpiamgdhoheckclfgbkklkh
Opis Replaces the Google Analytics favicon with a real time count of your site's visitors.
Rozmiar pliku 13.85 KB
Liczba instalacji 111
Aktualna Wersja 1.0
Ostatnia Aktualizacja 2016-05-23
Data Publikacji 2016-05-23
Deweloper brendonboshell
Typ Płatności free
Obsługiwane Języki 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"
    ]
}