Snowplow Analytics Debugger
Debug your Snowplow Analytics implementation with the Snowplow Analytics Debugger in Developer Tools.
Snowplow Analytics Debugger là gì?
Snowplow Analytics Debugger là một tiện ích mở rộng Chrome được phát triển bởi https://snowcatcloud.com, và tính năng chính của nó là "Debug your Snowplow Analytics implementation with the Snowplow Analytics Debugger in Developer Tools.".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng Snowplow Analytics Debugger
Tải xuống các tệp mở rộng Snowplow Analytics Debugger dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.
Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng
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].
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | Snowplow Analytics Debugger |
ID | jbnlcgeengmijcghameodeaenefieedm |
URL Chính Thức | https://chromewebstore.google.com/detail/snowplow-analytics-debugg/jbnlcgeengmijcghameodeaenefieedm |
Mô tả | Debug your Snowplow Analytics implementation with the Snowplow Analytics Debugger in Developer Tools. |
Kích Thước Tệp | 276 KB |
Số Lần Cài Đặt | 4,269 |
Phiên Bản Hiện Tại | 1.2.0 |
Cập Nhật Lần Cuối | 2022-03-14 |
Ngày Phát Hành | 2019-11-04 |
Đánh Giá | 4.50/5 Tổng số 8 Đánh Giá |
Nhà Phát Triển | https://snowcatcloud.com |
[email protected] | |
Loại Thanh Toán | free |
Trang Web Mở Rộng | https://www.snowcatcloud.com |
URL Trang Trợ Giúp | https://docs.snowcatcloud.com/snowplow-chrome-extension/introduction |
URL Trang Chính Sách Bảo Mật | https://www.snowcatcloud.com/legal/privacy |
Ngôn Ngữ Được Hỗ Trợ | 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": [ " |