Analytics Debug Panel

Analytics Debug Panel is an Open Source browser extension to inspect, search & filter analytics traffic in your Developer Console.

¿Qué es Analytics Debug Panel?

Analytics Debug Panel es una extensión de Chrome desarrollada por https://redvanworkshop.com, y su función principal es "Analytics Debug Panel is an Open Source browser extension to inspect, search & filter analytics traffic in your Developer Console.".

Capturas de Pantalla de la Extensión

screenshot
screenshot
screenshot
screenshot

Descargar Archivo CRX de la Extensión Analytics Debug Panel

Descarga archivos de extensión Analytics Debug Panel en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.

Instrucciones de Uso de la Extensión

                        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                    

Información Básica de la Extensión

Nombre Analytics Debug Panel Analytics Debug Panel
ID poaajdjaghjhnampllfkclmepngmaekb
URL Oficial https://chrome.google.com/webstore/detail/analytics-debug-panel/poaajdjaghjhnampllfkclmepngmaekb
Descripción Analytics Debug Panel is an Open Source browser extension to inspect, search & filter analytics traffic in your Developer Console.
Tamaño del Archivo 710 KB
Cantidad de Instalaciones 139
Versión Actual 1.0.0
Última Actualización 2019-02-28
Fecha de Publicación 2019-02-23
Calificación 5.00/5 Total de 1 Calificaciones
Desarrollador https://redvanworkshop.com
Correo electrónico [email protected]
Tipo de Pago free
Sitio Web de la Extensión https://github.com/redvanworkshop/analytics-debug-panel
URL de la Página de Ayuda https://github.com/redvanworkshop/analytics-debug-panel/issues
Idiomas Soportados 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"
    ]
}