Google Analytics Realtime Favicon

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

什么是Google Analytics Realtime Favicon?

Google Analytics Realtime Favicon是由brendonboshell开发的Chrome扩展程序,该扩展的主要功能是“Replaces the Google Analytics favicon with a real time count of your site's visitors.”。

扩展截图

screenshot

下载Google Analytics Realtime Favicon扩展crx文件

下载Google Analytics Realtime Favicon扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        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.                    

扩展基本信息

名称 Google Analytics Realtime Favicon Google Analytics Realtime Favicon
ID hlgebiiefbpiamgdhoheckclfgbkklkh
官方URL https://chromewebstore.google.com/detail/google-analytics-realtime/hlgebiiefbpiamgdhoheckclfgbkklkh
简介 Replaces the Google Analytics favicon with a real time count of your site's visitors.
文件大小 13.85 KB
安装次数 111
当前版本 1.0
更新时间 2016-05-23
上架时间 2016-05-23
开发者 brendonboshell
付费类型 free
支持的语言 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"
    ]
}