Google Analytics Charts

Adds a chart window into Google Analytics Query Explorer(https://ga-dev-tools.appspot.com/query-explorer/)

什么是Google Analytics Charts?

Google Analytics Charts是由Unknown开发的Chrome扩展程序,该扩展的主要功能是“Adds a chart window into Google Analytics Query Explorer(https://ga-dev-tools.appspot.com/query-explorer/)”。

扩展截图

screenshot

下载Google Analytics Charts扩展crx文件

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

扩展使用说明

                        This extension adds chart view into Google Analytics Query Explorer.                    

扩展基本信息

名称 Google Analytics Charts Google Analytics Charts
ID kiohndocpaamknofhkcaoiibjabgenij
官方URL https://chromewebstore.google.com/detail/google-analytics-charts/kiohndocpaamknofhkcaoiibjabgenij
简介 Adds a chart window into Google Analytics Query Explorer(https://ga-dev-tools.appspot.com/query-explorer/)
文件大小 104 KB
安装次数 234
当前版本 0.9.0
更新时间 2015-12-13
上架时间 2015-12-13
开发者 Unknown
付费类型 free
支持的语言 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "__MSG_appName__",
    "version": "0.9.0",
    "manifest_version": 2,
    "description": "__MSG_appDescription__",
    "icons": {
        "16": "images\/icon-16.png",
        "48": "images\/icon-48.png",
        "64": "images\/icon-64.png",
        "128": "images\/icon-128.png"
    },
    "default_locale": "en",
    "background": {
        "scripts": [
            "scripts\/background\/main.js"
        ]
    },
    "permissions": [
        "webRequest",
        "https:\/\/www.googleapis.com\/analytics\/v3\/data\/ga",
        "https:\/\/content.googleapis.com\/analytics\/v3\/data\/ga"
    ],
    "sandbox": {
        "pages": [
            "chart.html"
        ],
        "content_security_policy": "sandbox allow-scripts; script-src 'self' 'unsafe-eval' 'unsafe-inline' https:\/\/www.google.com\/jsapi https:\/\/www.google.com\/uds\/"
    },
    "web_accessible_resources": [
        "chart.html"
    ],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/ga-dev-tools.appspot.com\/query-explorer\/*"
            ],
            "js": [
                "lib\/jquery.min.js",
                "scripts\/contentscript\/main.js"
            ],
            "run_at": "document_end",
            "all_frames": false
        }
    ]
}