Analytics Debug Panel
Analytics Debug Panel is an Open Source browser extension to inspect, search & filter analytics traffic in your Developer Console.
Analytics Debug Panel là gì?
Analytics Debug Panel là một tiện ích mở rộng Chrome được phát triển bởi https://redvanworkshop.com, và tính năng chính của nó là "Analytics Debug Panel is an Open Source browser extension to inspect, search & filter analytics traffic in your Developer Console.".
Ả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 Analytics Debug Panel
Tải xuống các tệp mở rộng Analytics Debug Panel 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
Red Van Workshop works with online retailers that have a variety of Analytic Providers for their differing business needs. Working on new integrations and debugging existing ones is an integral part of our developer process. We built this Browser Extension to help make that process easier. We hope you will find it as useful as we do, and if you want to help make it better, we'd love to hear from you. FEATURES: • 100% Open Source • Support for Chrome, Firefox & Opera • Works with Adobe, Google & Facebook Analytics • Copy Requests to Clipboard • Light & Dark Themes
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | |
ID | poaajdjaghjhnampllfkclmepngmaekb |
URL Chính Thức | https://chrome.google.com/webstore/detail/analytics-debug-panel/poaajdjaghjhnampllfkclmepngmaekb |
Mô tả | Analytics Debug Panel is an Open Source browser extension to inspect, search & filter analytics traffic in your Developer Console. |
Kích Thước Tệp | 710 KB |
Số Lần Cài Đặt | 139 |
Phiên Bản Hiện Tại | 1.0.0 |
Cập Nhật Lần Cuối | 2019-02-28 |
Ngày Phát Hành | 2019-02-23 |
Đánh Giá | 5.00/5 Tổng số 1 Đánh Giá |
Nhà Phát Triển | https://redvanworkshop.com |
[email protected] | |
Loại Thanh Toán | free |
Trang Web Mở Rộng | https://github.com/redvanworkshop/analytics-debug-panel |
URL Trang Trợ Giúp | https://github.com/redvanworkshop/analytics-debug-panel/issues |
Ngôn Ngữ Được Hỗ Trợ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Analytics Debug Panel", "version": "1.0.0", "description": "Analytics Debug Panel is an Open Source browser extension to inspect, search & filter analytics traffic in your Developer Console.", "author": "Peter Schmalfeldt", "manifest_version": 2, "icons": { "16": "icons\/16.png", "48": "icons\/48.png", "128": "icons\/128.png" }, "permissions": [ "http:\/\/*\/*", "https:\/\/*\/*", "storage", "tabs", "webNavigation", "webRequest", "webRequestBlocking" ], "browser_action": { "default_icon": "icons\/128.png", "default_title": "Analytics Debugger" }, "background": { "page": "pages\/background.html" }, "devtools_page": "pages\/devtools.html", "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'", "web_accessible_resources": [ "panel.html", "js\/vendor.js", "js\/manifest.js", "js\/browser-polyfill.js" ] } |