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 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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:"
    }
}