Amplitude Event Explorer

Explore and debug your Amplitude JavaScript SDK instrumentation by interacting with your site.

什么是Amplitude Event Explorer?

Amplitude Event Explorer是由Amplitude开发的Chrome扩展程序,该扩展的主要功能是“Explore and debug your Amplitude JavaScript SDK instrumentation by interacting with your site.”。

扩展截图

screenshot
screenshot

下载Amplitude Event Explorer扩展crx文件

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

扩展使用说明

                        Event Explorer allows you to explore events, event properties, and user properties in real time within your web application. Click on events within your timeline to further explore event data. Click on the API options tab to further explore your SDK configuration.

» Notes «
• This extension can be used on any of our Browser SDKs.
https://www.docs.developers.amplitude.com/data/sdks/typescript-browser.

• To see similar information for mobile and other SDKs checkout our User Lookup and Ingestion Debugger tools.
https://www.docs.developers.amplitude.com/data/sdks/#check-for-success_2

• Event Explorer works with the default Amplitude HTTP endpoints. Custom domains are not supported at this time.
https://www.docs.developers.amplitude.com/analytics/apis/http-v2-api/#endpoints                    

扩展基本信息

名称 Amplitude Event Explorer Amplitude Event Explorer
ID acehfjhnmhbmgkedjmjlobpgdicnhkbp
官方URL https://chromewebstore.google.com/detail/amplitude-event-explorer/acehfjhnmhbmgkedjmjlobpgdicnhkbp
简介 Explore and debug your Amplitude JavaScript SDK instrumentation by interacting with your site.
文件大小 1.04 MB
安装次数 34,454
当前版本 1.0.5
更新时间 2023-10-13
上架时间 2020-05-11
评分 4.33/5 共21次评分
开发者 Amplitude
电子邮箱 [email protected]
付费类型 free
帮助页面URL https://help.amplitude.com/hc/en-us/requests/new
隐私政策页面URL https://amplitude.com/privacy
支持的语言 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "version": "1.0.5",
    "name": "Amplitude Event Explorer",
    "manifest_version": 3,
    "description": "Explore and debug your Amplitude JavaScript SDK instrumentation by interacting with your site.",
    "action": {
        "default_title": "Amplitude Event Explorer",
        "default_popup": "popup.html"
    },
    "icons": {
        "16": "img\/amplitude-logo-16.png",
        "48": "img\/amplitude-logo-48.png",
        "128": "img\/amplitude-logo-128.png"
    },
    "web_accessible_resources": [
        {
            "resources": [
                "inject.html",
                "details.html",
                "js\/options.js",
                "img\/*"
            ],
            "matches": [
                "*:\/\/*\/*"
            ]
        }
    ],
    "background": {
        "service_worker": "js\/serviceWorker.bundle.js"
    },
    "content_scripts": [
        {
            "js": [
                "js\/inject.bundle.js"
            ],
            "matches": [
                "*:\/\/*\/*"
            ]
        }
    ],
    "permissions": [
        "cookies",
        "storage",
        "webRequest"
    ],
    "host_permissions": [
        "https:\/\/*.amplitude.com\/*",
        "http:\/\/*\/*",
        "https:\/\/*\/*"
    ],
    "content_security_policy": {
        "extension_pages": "default-src 'self'; script-src 'self'; style-src * 'unsafe-inline'; connect-src https:\/\/analytics.amplitude.com\/ https:\/\/api.amplitude.com\/ https:\/\/api2.amplitude.com\/ https:\/\/api-secure.amplitude.com\/; img-src 'self' data:"
    }
}