Google Analytics Charts
Adds a chart window into Google Analytics Query Explorer(https://ga-dev-tools.appspot.com/query-explorer/)
What is Google Analytics Charts?
Google Analytics Charts is a Chrome extension developed by Unknown, and its main feature is "Adds a chart window into Google Analytics Query Explorer(https://ga-dev-tools.appspot.com/query-explorer/)".
Extension Screenshots
Download Google Analytics Charts Extension CRX File
Download Google Analytics Charts 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 extension adds chart view into Google Analytics Query Explorer.
Extension Basic Information
Name | Google Analytics Charts |
ID | kiohndocpaamknofhkcaoiibjabgenij |
Official URL | https://chromewebstore.google.com/detail/google-analytics-charts/kiohndocpaamknofhkcaoiibjabgenij |
Description | Adds a chart window into Google Analytics Query Explorer(https://ga-dev-tools.appspot.com/query-explorer/) |
File Size | 104 KB |
Installation Count | 234 |
Current Version | 0.9.0 |
Last Updated | 2015-12-13 |
Publish Date | 2015-12-13 |
Developer | Unknown |
Payment Type | free |
Supported Languages | 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 } ] } |