PowerUI for Power Automate

PowerUI for Power Automate

Improves the flow editor user interface for Power Automate

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "PowerUI for Power Automate",
  "description": "Improves the flow editor user interface for Power Automate",
  "version": "1.0.4",
  "manifest_version": 3,
  "author": "365Apps.io",
  "action": {
    "default_popup": "index.html",
    "default_title": "PowerUI"
  },
  "icons": {
    "16": "expand.png",
    "48": "expand.png",
    "128": "expand.png"
  },
  "background": {
    "service_worker": "./background.js"
  },
  "permissions": [
    "storage"
  ],
  "content_scripts": [
    {
      "css": [
        "styles.css"
      ],
      "js": [
        "content.js"
      ],
      "matches": [
        "https://*.flow.microsoft.com/*",
        "https://make.powerapps.com/*",
        "https://make.powerautomate.com/*"
      ]
    }
  ]
}