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/)」です。
拡張機能のスクリーンショット
Google Analytics Charts拡張機能のCRXファイルをダウンロード
Google Analytics Charts拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
This extension adds chart view into Google Analytics Query Explorer.
拡張機能の基本情報
名前 | 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 } ] } |