Hyland RPA Automation Extension

Hyland RPA Automation Extension

Allows Hyland RPA to access and automate the browser.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Hyland RPA Automation Extension",
  "version": "1.0.7",
  "description": "Allows Hyland RPA to access and automate the browser.",
  "icons": {
    "16": "hyland.png",
    "48": "hyland.png",
    "128": "hyland.png"
  },
  "content_scripts": [
    {
      "run_at": "document_start",
      "js": [
        "contentScript.js"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ],
  "permissions": [
    "nativeMessaging",
    "tabs",
    "debugger"
  ],
  "host_permissions": [
    "<all_urls>"
  ],
  "background": {
    "service_worker": "background.js"
  },
  "content_security_policy": {
    "extension_pages": "script-src 'self'; object-src 'self';"
  }
}