UI.Vision RPA

UI.Vision RPA

UI.Vision RPA (formerly Kantu) is open-source Robotic Process Automation (RPA) software for task and test automation. It is 3 tools in 1: Visual web browser automation, Selenium IDE and AI-powered desktop automation for Windows, Mac and Linux.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 3,
  "name": "__MSG_name__",
  "description": "__MSG_description__",
  "short_name": "__MSG_short_name__",
  "default_locale": "en",
  "version": "9.1.9",
  "icons": {
    "128": "logo128.png"
  },
  "action": {
    "default_icon": {
      "38": "logo38.png"
    }
  },
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "web_accessible_resources": [
    {
      "resources": [
        "content_script.js",
        "inject.js",
        "logo.png"
      ],
      "matches": [
        "<all_urls>"
      ],
      "extension_ids": []
    }
  ],
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "all_frames": true,
      "match_about_blank": true,
      "js": [
        "content_script.js"
      ],
      "run_at": "document_start"
    }
  ],
  "permissions": [
    "bookmarks",
    "clipboardRead",
    "clipboardWrite",
    "cookies",
    "downloads",
    "notifications",
    "storage",
    "tabs",
    "proxy",
    "nativeMessaging",
    "contextMenus",
    "webRequest",
    "scripting"
  ],
  "host_permissions": [
    "<all_urls>"
  ],
  "browser_specific_settings": {
    "gecko": {
      "id": "{190d04a6-e387-4f5b-9751-e0d222cf8275}",
      "strict_min_version": "115.0"
    }
  },
  "options_ui": {
    "page": "options.html"
  },
  "sidebar_action": {
    "default_title": "__MSG_name__",
    "default_panel": "sidepanel.html",
    "default_icon": "logo128.png",
    "open_at_install": false
  }
}