D365FO-DevTools

D365FO-DevTools

A chrome D365FO extension for users that changes the color of navigation bar and shows the Database names of form fields and more

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "D365FO-DevTools",
  "short_name": "D365FO-DevTools",
  "description": "A chrome D365FO extension for users that changes the color of navigation bar and shows the Database names of form fields and more",
  "version": "5.1.2",
  "permissions": [
    "tabs",
    "http://*/*",
    "https://*/*",
    "<all_urls>"
  ],
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "content_scripts": [
    {
      "matches": [
        "https://*.dynamics.com/*"
      ],
      "js": [
        "screenshot.js"
      ]
    }
  ],
  "icons": {
    "16": "icon16.png",
    "48": "icon48.png",
    "128": "icon128.png"
  },
  "browser_action": {
    "default_title": "D365FO-DevTools",
    "default_popup": "popup.html"
  },
  "manifest_version": 2
}