Anypoint Platform Chrome Extension

Anypoint Platform Chrome Extension

Anypoint Platform Chrome Extension

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Anypoint Platform Chrome Extension",
  "description": "Anypoint Platform Chrome Extension",
  "version": "2.8",
  "background": {
    "service_worker": "service-worker.js"
  },
  "options_page": "settings/settings.html",
  "permissions": [
    "scripting",
    "storage",
    "tabs",
    "webRequest",
    "activeTab",
    "declarativeContent"
  ],
  "host_permissions": [
    "https://anypoint.mulesoft.com/*",
    "*://*/*"
  ],
  "action": {
    "default_title": "Click to show an alert",
    "default_icon": {
      "16": "icons/mule.png",
      "24": "icons/mule.png",
      "32": "icons/mule.png"
    },
    "default_popup": "popup.html"
  },
  "content_scripts": [
    {
      "js": [
        "foreground.js"
      ],
      "matches": [
        "https://anypoint.mulesoft.com/*"
      ]
    }
  ]
}