openrpa

openrpa

Support extension for OpenRPA

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "openrpa",
  "version": "1.0.0.5",
  "description": "Support extension for OpenRPA",
  "permissions": [
    "nativeMessaging",
    "webNavigation",
    "downloads",
    "debugger",
    "scripting",
    "activeTab",
    "tabs"
  ],
  "background": {
    "service_worker": "background.js"
  },
  "content_scripts": [
    {
      "all_frames": true,
      "js": [
        "content.js"
      ],
      "match_about_blank": true,
      "matches": [
        "http://*/*",
        "https://*/*",
        "file://*/*"
      ],
      "run_at": "document_start"
    }
  ],
  "content_security_policy": {
    "extension_pages": "script-src 'self'; object-src 'self'"
  },
  "icons": {
    "16": "images/OpenRPA16.png",
    "48": "images/OpenRPA48.png",
    "128": "images/OpenRPA128.png"
  },
  "action": {},
  "browser_specific_settings": {
    "gecko": {
      "id": "[email protected]"
    }
  }
}