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?
Analytics Debug Panel是由https://redvanworkshop.com開發的Chrome擴展程式,該擴展的主要功能是“Analytics Debug Panel is an Open Source browser extension to inspect, search & filter analytics traffic in your Developer Console.”。
擴展截圖
下載Analytics Debug Panel擴展crx文件
下載Analytics Debug Panel擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
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
擴展基本資訊
名稱 | |
ID | poaajdjaghjhnampllfkclmepngmaekb |
官方網址 | https://chrome.google.com/webstore/detail/analytics-debug-panel/poaajdjaghjhnampllfkclmepngmaekb |
簡介 | Analytics Debug Panel is an Open Source browser extension to inspect, search & filter analytics traffic in your Developer Console. |
檔案大小 | 710 KB |
安裝次數 | 139 |
目前版本 | 1.0.0 |
更新時間 | 2019-02-28 |
上架時間 | 2019-02-23 |
評分 | 5.00/5 共 1 次評分 |
開發者 | https://redvanworkshop.com |
電子郵箱 | [email protected] |
付費類型 | free |
擴展官網 | https://github.com/redvanworkshop/analytics-debug-panel |
說明頁面URL | https://github.com/redvanworkshop/analytics-debug-panel/issues |
支援的語言 | 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" ] } |