Power Automate Flow Clipboard

Power Automate Flow Clipboard

Action Clipboard Library for Power Automate

Merlin
Additional files are visible only to premium users

manifest.json


{
  "name": "Power Automate Flow Clipboard",
  "version": "2.2.2",
  "description": "Action Clipboard Library for Power Automate",
  "icons": {
    "128": "flowCatalogue Icon 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"
  },
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}