Power DexBox Utility

Power DexBox Utility

Build tool for Power Automate

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Power DexBox Utility",
  "version": "3.0.0",
  "description": "Build tool for Power Automate",
  "icons": {
    "128": "utility grey 128.png"
  },
  "manifest_version": 3,
  "author": "David Wyatt",
  "commands": {
    "_execute_action": {
      "description": "Launch Window",
      "global": true
    }
  },
  "permissions": [
    "unlimitedStorage",
    "activeTab",
    "declarativeNetRequest",
    "tabs",
    "storage",
    "clipboardRead",
    "sidePanel",
    "webRequest"
  ],
  "host_permissions": [
    "https://*.api.flow.microsoft.com/*",
    "https://make.powerautomate.com/*"
  ],
  "side_panel": {
    "default_path": "index.htm"
  },
  "content_scripts": [
    {
      "matches": [
        "https://make.powerautomate.com/*",
        "https://make.preview.powerautomate.com/*",
        "https://make.powerapps.com/*",
        "https://make.preview.powerapps.com/*"
      ],
      "js": [
        "content.js",
        "assets/js/jquery-1.10.2.js"
      ]
    }
  ],
  "background": {
    "service_worker": "background.js"
  },
  "action": {
    "default_popup": "index.htm",
    "default_title": "FlowCatalogue"
  }
}