Google Analytics Realtime Favicon

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

¿Qué es Google Analytics Realtime Favicon?

Google Analytics Realtime Favicon es una extensión de Chrome desarrollada por brendonboshell, y su función principal es "Replaces the Google Analytics favicon with a real time count of your site's visitors.".

Capturas de Pantalla de la Extensión

screenshot

Descargar Archivo CRX de la Extensión Google Analytics Realtime Favicon

Descarga archivos de extensión Google Analytics Realtime Favicon en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.

Instrucciones de Uso de la Extensión

                        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.                    

Información Básica de la Extensión

Nombre Google Analytics Realtime Favicon Google Analytics Realtime Favicon
ID hlgebiiefbpiamgdhoheckclfgbkklkh
URL Oficial https://chromewebstore.google.com/detail/google-analytics-realtime/hlgebiiefbpiamgdhoheckclfgbkklkh
Descripción Replaces the Google Analytics favicon with a real time count of your site's visitors.
Tamaño del Archivo 13.85 KB
Cantidad de Instalaciones 111
Versión Actual 1.0
Última Actualización 2016-05-23
Fecha de Publicación 2016-05-23
Desarrollador brendonboshell
Tipo de Pago free
Idiomas Soportados 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"
    ]
}