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."입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot
screenshot

Analytics Debug Panel 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        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                    

확장 프로그램 기본 정보

이름 Analytics Debug Panel Analytics Debug Panel
ID poaajdjaghjhnampllfkclmepngmaekb
공식 URL 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"
    ]
}