PrettifyMyWebApi for Microsoft Dataverse

PrettifyMyWebApi for Microsoft Dataverse

Open any row in the Dataverse Web Api and supercharge the output. Press to impress your coworkers!

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "PrettifyMyWebApi for Microsoft Dataverse",
  "version": "1.0.7.2",
  "description": "Open any row in the Dataverse Web Api and supercharge the output. Press to impress your coworkers!",
  "manifest_version": 3,
  "author": "Erik Donker",
  "background": {
    "service_worker": "background.js"
  },
  "commands": {
    "Ctrl+M": {
      "suggested_key": {
        "default": "Ctrl+M",
        "mac": "Command+M"
      },
      "description": "Ctrl+M."
    }
  },
  "action": {},
  "permissions": [
    "activeTab",
    "scripting"
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "eventHandler.js",
        "libs/*"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ],
  "content_scripts": [
    {
      "matches": [
        "*://*.dynamics.com/api/data/*"
      ],
      "js": [
        "prettifyWebApi.js"
      ]
    }
  ],
  "icons": {
    "128": "icon128.png"
  }
}