Google Analytics Realtime Favicon

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

O que é Google Analytics Realtime Favicon?

Google Analytics Realtime Favicon é uma extensão do Chrome desenvolvida por brendonboshell, e sua principal característica é "Replaces the Google Analytics favicon with a real time count of your site's visitors.".

Capturas de Tela da Extensão

screenshot

Baixar o arquivo CRX da Extensão Google Analytics Realtime Favicon

Baixe arquivos de extensão Google Analytics Realtime Favicon no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        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.                    

Informações Básicas da Extensão

Nome Google Analytics Realtime Favicon Google Analytics Realtime Favicon
ID hlgebiiefbpiamgdhoheckclfgbkklkh
URL Oficial https://chromewebstore.google.com/detail/google-analytics-realtime/hlgebiiefbpiamgdhoheckclfgbkklkh
Descrição Replaces the Google Analytics favicon with a real time count of your site's visitors.
Tamanho do Arquivo 13.85 KB
Contagem de Instalações 111
Versão Atual 1.0
Última Atualização 2016-05-23
Data de Publicação 2016-05-23
Desenvolvedor brendonboshell
Tipo de Pagamento free
Idiomas Suportados 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"
    ]
}