Google Analytics Realtime Favicon

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

What is Google Analytics Realtime Favicon?

Google Analytics Realtime Favicon is a Chrome extension developed by brendonboshell, and its main feature is "Replaces the Google Analytics favicon with a real time count of your site's visitors.".

Extension Screenshots

screenshot

Download Google Analytics Realtime Favicon Extension CRX File

Download Google Analytics Realtime Favicon extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        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.                    

Extension Basic Information

Name Google Analytics Realtime Favicon Google Analytics Realtime Favicon
ID hlgebiiefbpiamgdhoheckclfgbkklkh
Official URL https://chromewebstore.google.com/detail/google-analytics-realtime/hlgebiiefbpiamgdhoheckclfgbkklkh
Description Replaces the Google Analytics favicon with a real time count of your site's visitors.
File Size 13.85 KB
Installation Count 111
Current Version 1.0
Last Updated 2016-05-23
Publish Date 2016-05-23
Developer brendonboshell
Payment Type free
Supported Languages 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"
    ]
}