AISTREAM Edge Automation

AISTREAM Edge Automation

Allow AISTREAM Studio and AISTREAM Robot to automatically operate Microsoft Edge and its elements for RPA scenarios.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "name": "AISTREAM Edge Automation",
  "version": "2.0.1",
  "manifest_version": 2,
  "description": "Allow AISTREAM Studio and AISTREAM Robot to automatically operate Microsoft Edge and its elements for RPA scenarios.",
  "background": {
    "scripts": [
      "index.js"
    ]
  },
  "icons": {
    "16": "icon16.png",
    "32": "icon32.png",
    "48": "icon48.png",
    "128": "icon128.png"
  },
  "permissions": [
    "nativeMessaging",
    "tabs",
    "webNavigation",
    "<all_urls>"
  ],
  "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'",
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*",
        "file://*/*"
      ],
      "match_about_blank": true,
      "js": [
        "loader.js"
      ],
      "run_at": "document_start",
      "all_frames": true
    }
  ],
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}