Mixpanel Debugger

Mixpanel Debugger

Displays the live log of decoded Mixpanel Events

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Mixpanel Debugger",
  "description": "Displays the live log of decoded Mixpanel Events",
  "version": "0.2",
  "permissions": [
    "https://www.google-analytics.com/",
    "http://*/*",
    "https://*/*",
    "pageCapture",
    "storage",
    "tabs",
    "webRequest",
    "<all_urls>",
    "contextMenus"
  ],
  "devtools_page": "chrome-preprocessor.html",
  "icons": {
    "16": "img/icon16.png",
    "48": "img/icon48.png",
    "128": "img/icon128.png"
  },
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "manifest_version": 2,
  "content_security_policy": "script-src 'self' https://www.google-analytics.com 'unsafe-eval'; object-src 'self'",
  "web_accessible_resources": [
    "*"
  ]
}