UiPath Browser Automation 23.4

UiPath Browser Automation 23.4

Expands your browser automation capabilities from Studio desktop.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "background": {
    "service_worker": "BackgroundServiceWorker.js"
  },
  "action": {
    "default_popup": ""
  },
  "content_scripts": [
    {
      "all_frames": true,
      "js": [
        "ContentMain.js"
      ],
      "match_about_blank": true,
      "matches": [
        "http://*/*",
        "https://*/*",
        "file://*/*"
      ],
      "run_at": "document_start"
    }
  ],
  "externally_connectable": {
    "matches": [
      "*://*.uipath.com/*"
    ]
  },
  "content_security_policy": {
    "extension_pages": "script-src 'self'; object-src 'self'"
  },
  "default_locale": "en",
  "description": "Expands your browser automation capabilities from Studio desktop.",
  "icons": {
    "16": "uiPath16.png",
    "32": "uiPath32.png",
    "48": "uiPath48.png",
    "128": "uiPath128.png"
  },
  "manifest_version": 3,
  "name": "UiPath Browser Automation 23.4",
  "permissions": [
    "management",
    "nativeMessaging",
    "tabs",
    "webNavigation",
    "debugger",
    "cookies",
    "scripting",
    "webRequest"
  ],
  "host_permissions": [
    "<all_urls>"
  ],
  "version": "23.4.2"
}