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 เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Unknown และคุณลักษณะหลักของมันคือ "Adds a chart window into Google Analytics Query Explorer(https://ga-dev-tools.appspot.com/query-explorer/)"

ภาพหน้าจอของส่วนขยาย

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Google Analytics Charts

ดาวน์โหลดไฟล์ส่วนขยาย 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
        }
    ]
}