Mapp Cloud Debugger

Mapp Cloud Debugger

Debug and test your Mapp Cloud implementation

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Mapp Cloud Debugger",
  "version": "1.2.6",
  "description": "Debug and test your Mapp Cloud implementation",
  "permissions": [
    "storage",
    "webRequest",
    "scripting"
  ],
  "host_permissions": [
    "<all_urls>"
  ],
  "manifest_version": 3,
  "background": {
    "service_worker": "background.js"
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "content.js"
      ],
      "run_at": "document_start",
      "all_frames": true
    }
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "getConfig.js",
        "smartProxy.js",
        "marketingAutomationProxy.js",
        "popup.html",
        "popup.html?p=0"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ],
  "action": {
    "default_popup": "popup.html",
    "default_icon": {
      "16": "images/logo/mapp-icon-16.png",
      "32": "images/logo/mapp-icon-32.png",
      "48": "images/logo/mapp-icon-48.png",
      "128": "images/logo/mapp-icon-128.png"
    }
  },
  "icons": {
    "16": "images/logo/mapp-icon-16.png",
    "32": "images/logo/mapp-icon-32.png",
    "48": "images/logo/mapp-icon-48.png",
    "128": "images/logo/mapp-icon-128.png"
  }
}