Adobe Experience Platform Debugger

Adobe Experience Platform Debugger

Debug Adobe Experience Platform and Adobe Experience Cloud products using the Adobe Experience Platform Debugger

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "__MSG_appName__",
  "version": "1.5.4",
  "manifest_version": 2,
  "description": "__MSG_appDescription__",
  "icons": {
    "16": "experience_platform_16.cd4d870b.png",
    "48": "experience_platform_48.b69a49d5.png",
    "128": "experience_platform_128.af37e26e.png"
  },
  "minimum_chrome_version": "72.0.0",
  "default_locale": "en",
  "background": {
    "scripts": [
      "sw.6d903817.js"
    ],
    "persistent": true
  },
  "browser_action": {
    "default_icon": {
      "16": "experience_platform_16.cd4d870b.png",
      "48": "experience_platform_48.b69a49d5.png",
      "128": "experience_platform_128.af37e26e.png"
    },
    "default_title": "__MSG_appName__"
  },
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "exclude_matches": [
        "http://*/*.xml",
        "https://*/*.xml",
        "https://*.adobelogin.com/*"
      ],
      "js": [
        "src/content/content.js"
      ],
      "run_at": "document_start",
      "css": []
    }
  ],
  "permissions": [
    "cookies",
    "debugger",
    "storage",
    "webNavigation",
    "webRequest",
    "webRequestBlocking",
    "http://*/*",
    "https://*/*"
  ],
  "web_accessible_resources": [
    "src/app/index.html",
    "src/login/login.html",
    "src/content/content.js"
  ]
}