D365 SidePanel Dev Tools

D365 SidePanel Dev Tools

Development tools for Dynamics 365. This Chromium extension assists developers and testers by providing tools to retrieve and…

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "D365 SidePanel Dev Tools",
  "description": "",
  "version": "0.9.6",
  "manifest_version": 3,
  "background": {
    "service_worker": "/static/js/background.js"
  },
  "action": {
    "default_popup": "options.html",
    "default_title": "Options"
  },
  "icons": {
    "16": "icons/muiwand.png",
    "48": "icons/muiwand.png",
    "128": "icons/muiwand.png"
  },
  "content_scripts": [
    {
      "matches": [
        "https://*/*",
        "http://*/*"
      ],
      "js": [
        "/static/js/spdevtools.content.js"
      ]
    }
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "/static/js/spdevtools.js",
        "/icons/*"
      ],
      "matches": [
        "https://*/*",
        "http://*/*"
      ]
    }
  ],
  "host_permissions": [
    "*://*.dynamics.com/*"
  ],
  "permissions": [
    "storage",
    "declarativeNetRequest",
    "debugger"
  ],
  "externally_connectable": {
    "matches": [
      "https://*/*",
      "http://*/*"
    ]
  }
}