Microsoft Power Automate (Legacy)

Microsoft Power Automate (Legacy)

Add-on for enabling web automation. This web extension is compatible with Power Automate for desktop version 2.26 or earlier.

Additional files are visible only to premium users

manifest.json


{
  "description": "__MSG_appDescription__",
  "manifest_version": 2,
  "name": "__MSG_appName__",
  "default_locale": "en",
  "version": "2.0.19",
  "minimum_chrome_version": "50.0",
  "icons": {
    "32": "PAD-ico_32.png",
    "48": "PAD-ico_48.png",
    "56": "PAD-ico_56.png",
    "64": "PAD-ico_64.png"
  },
  "background": {
    "page": "background.html"
  },
  "browser_action": {
    "default_popup": "popup/popup.html"
  },
  "permissions": [
    "<all_urls>",
    "activeTab",
    "tabs",
    "browsingData",
    "nativeMessaging",
    "http://*/*",
    "https://*/*"
  ],
  "content_security_policy": "default-src 'self'",
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*",
        "file://*/*"
      ],
      "js": [
        "msgport.js",
        "content.js"
      ],
      "run_at": "document_start",
      "match_about_blank": true
    }
  ],
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}