Google Analytics Charts

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

Wat is Google Analytics Charts?

Google Analytics Charts is een Chrome-extensie ontwikkeld door Unknown, en de belangrijkste functie is "Adds a chart window into Google Analytics Query Explorer(https://ga-dev-tools.appspot.com/query-explorer/)".

Extensie Screenshots

screenshot

Download het CRX-bestand van de extensie Google Analytics Charts

Download Google Analytics Charts-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                        This extension adds chart view into Google Analytics Query Explorer.                    

Basisinformatie over de Extensie

Naam Google Analytics Charts Google Analytics Charts
ID kiohndocpaamknofhkcaoiibjabgenij
Officiële URL https://chromewebstore.google.com/detail/google-analytics-charts/kiohndocpaamknofhkcaoiibjabgenij
Beschrijving Adds a chart window into Google Analytics Query Explorer(https://ga-dev-tools.appspot.com/query-explorer/)
Bestandsgrootte 104 KB
Aantal Installaties 234
Huidige Versie 0.9.0
Laatst Bijgewerkt 2015-12-13
Publicatiedatum 2015-12-13
Ontwikkelaar Unknown
Betalingswijze free
Ondersteunde Talen 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
        }
    ]
}