Dynamics 365 F&O warehouse scanner

Dynamics 365 F&O warehouse scanner

Open the warehouse scanner of the environment you are currently working in

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Dynamics 365 F&O warehouse scanner",
  "short_name": "Dyn365 WS",
  "author": "Thomas Meersschaert",
  "version": "1.1",
  "manifest_version": 3,
  "description": "Open the warehouse scanner of the environment you are currently working in",
  "permissions": [
    "storage",
    "scripting"
  ],
  "host_permissions": [
    "https://*.dynamics.com/*"
  ],
  "action": {
    "default_icon": {
      "20": "images/logo20.png",
      "40": "images/logo40.png"
    },
    "default_title": "Dynamics 365 F&O warehouse scanner",
    "default_popup": "popup.html"
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "js/content.js"
      ],
      "run_at": "document_end"
    }
  ],
  "background": {
    "service_worker": "js/background.js"
  },
  "icons": {
    "16": "images/icon16.png",
    "48": "images/icon48.png",
    "128": "images/icon128.png"
  }
}