Snowplow Analytics Debugger

Debug your Snowplow Analytics implementation with the Snowplow Analytics Debugger in Developer Tools.

Snowplow Analytics Debugger란 무엇입니까?

Snowplow Analytics Debugger은(는) https://snowcatcloud.com에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Debug your Snowplow Analytics implementation with the Snowplow Analytics Debugger in Developer Tools."입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot
screenshot

Snowplow Analytics Debugger 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        If you work with Snowplow as much as we do, you know debugging is not as straightforward as inspecting hits with the network tab. Now it is!.

Looking to improve developers day-to-day during implementation and quality assurance of Snowplow, we've created a Chrome extension that is both simple and intuitive to use.

Features

 - Collector Override for easy debug
 - Event validation with detailed errors
 - Custom Iglu servers (including your local drive)
 - Rest your eyes with Chrome Dark and Light themes
 - Easier QA, export to CSV
 - See what you need, filter for any parameter

Changelog 

v.1.2.0 
Bugfixes
+ Migrated to Manifest v3.0
+ Disabled caching of schemas to ease schema development
+ Fixed inconsistent colors in long event list

v1.1.0 - August 2021
+ Added red background when hits have invalid payload (against schema)
+ Event validation against available schema with detailed errors
+ Hit detail reveal IGLU repositories schema URL used for validation
+ Several bug fixes

Please report any issues and feature requests to [email protected].                    

확장 프로그램 기본 정보

이름 Snowplow Analytics Debugger Snowplow Analytics Debugger
ID jbnlcgeengmijcghameodeaenefieedm
공식 URL https://chromewebstore.google.com/detail/snowplow-analytics-debugg/jbnlcgeengmijcghameodeaenefieedm
설명 Debug your Snowplow Analytics implementation with the Snowplow Analytics Debugger in Developer Tools.
파일 크기 276 KB
설치 횟수 4,269
현재 버전 1.2.0
최근 업데이트 2022-03-14
출시 날짜 2019-11-04
평점 4.50/5 총 8 개의 평점
개발자 https://snowcatcloud.com
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://www.snowcatcloud.com
도움말 페이지 URL https://docs.snowcatcloud.com/snowplow-chrome-extension/introduction
개인정보 보호 정책 페이지 URL https://www.snowcatcloud.com/legal/privacy
지원되는 언어 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Snowplow Analytics Debugger",
    "short_name": "Snowplow Debugger",
    "version": "1.2.0",
    "description": "Debug your Snowplow Analytics implementation with the Snowplow Analytics Debugger in Developer Tools.",
    "author": "SnowcatCloud",
    "minimum_chrome_version": "88",
    "icons": {
        "128": "\/img\/logo.png"
    },
    "action": {
        "default_icon": "\/img\/logo.png",
        "default_popup": "\/pages\/popup\/index.html"
    },
    "background": {
        "service_worker": "service_worker.js"
    },
    "sandbox": {
        "pages": [
            "\/pages\/sandbox\/index.html"
        ]
    },
    "devtools_page": "\/js\/background\/devtools.html",
    "options_ui": {
        "page": "\/pages\/options\/index.html",
        "open_in_tab": false
    },
    "content_scripts": [
        {
            "run_at": "document_start",
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "\/js\/content_script.js"
            ]
        }
    ],
    "permissions": [
        "activeTab",
        "storage",
        "webRequest"
    ],
    "host_permissions": [
        ""
    ],
    "content_security_policy": {
        "extension_pages": "script-src 'self'; object-src 'self'"
    },
    "web_accessible_resources": [
        {
            "resources": [
                "config.json",
                "js\/injected_script.js"
            ],
            "matches": [
                ""
            ],
            "use_dynamic_url": true
        }
    ]
}