Dynamics 365 Helper

Dynamics 365 Helper

A very useful D365 developer tool.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "name": "Dynamics 365 Helper",
  "manifest_version": 3,
  "version": "2.0.3",
  "description": "A very useful D365 developer tool.",
  "icons": {
    "16": "img/starship.png",
    "48": "img/starship.png",
    "128": "img/starship.png"
  },
  "action": {
    "default_title": "Dynamics 365 Helper",
    "default_icon": {
      "16": "img/starship.png"
    },
    "default_popup": "popup.html"
  },
  "content_scripts": [
    {
      "css": [
        "css/element_index.css",
        "css/chrome_common.css"
      ],
      "js": [
        "js/chrome_common.js"
      ],
      "all_frames": true,
      "matches": [
        "http://*/*",
        "https://*/*",
        "<all_urls>"
      ],
      "run_at": "document_idle"
    }
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "fonts/*",
        "js/*",
        "css/*",
        "img/*"
      ],
      "matches": [
        "http://*/*",
        "https://*/*",
        "<all_urls>"
      ]
    }
  ],
  "permissions": [
    "tabs",
    "scripting",
    "activeTab",
    "contextMenus",
    "management",
    "notifications"
  ],
  "host_permissions": [
    "<all_urls>",
    "https://*/*"
  ],
  "content_security_policy": {
    "extension_pages": "script-src 'self';object-src 'none'"
  },
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}