Google Analytics Realtime Favicon

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

Co je Google Analytics Realtime Favicon?

Google Analytics Realtime Favicon je rozšíření Chrome vyvinuté brendonboshell, a jeho hlavní funkcí je „Replaces the Google Analytics favicon with a real time count of your site's visitors.“.

Snímky obrazovky rozšíření

screenshot

Stáhnout soubor CRX rozšíření Google Analytics Realtime Favicon

Stáhněte si soubory rozšíření Google Analytics Realtime Favicon ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.

Pokyny pro Použití Rozšíření

                        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.                    

Základní Informace o Rozšíření

Název Google Analytics Realtime Favicon Google Analytics Realtime Favicon
ID hlgebiiefbpiamgdhoheckclfgbkklkh
Oficiální URL https://chromewebstore.google.com/detail/google-analytics-realtime/hlgebiiefbpiamgdhoheckclfgbkklkh
Popis Replaces the Google Analytics favicon with a real time count of your site's visitors.
Velikost souboru 13.85 KB
Počet instalací 111
Aktuální Verze 1.0
Poslední Aktualizace 2016-05-23
Datum Vydání 2016-05-23
Vývojář brendonboshell
Typ Platby free
Podporované Jazyky 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"
    ]
}