FIS iAutomate Web Automation

FIS iAutomate Web Automation

Add-on for enabling web browser automations

Merlin
Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 3,
  "name": "FIS iAutomate Web Automation",
  "version": "3.2.2",
  "description": "Add-on for enabling web browser automations",
  "background": {
    "service_worker": "js/background.js"
  },
  "icons": {
    "16": "images/RPALogo.png",
    "48": "images/RPALogo.png",
    "128": "images/RPALogo.png"
  },
  "permissions": [
    "browsingData",
    "nativeMessaging",
    "tabs",
    "background",
    "scripting"
  ],
  "host_permissions": [
    "http://*/*",
    "https://*/*"
  ],
  "content_scripts": [
    {
      "js": [
        "js/msgport.js",
        "js/content.js"
      ],
      "matches": [
        "http://*/*",
        "https://*/*",
        "file://*/*"
      ],
      "run_at": "document_start"
    }
  ],
  "content_security_policy": {
    "extension_pages": "script-src 'self'; object-src 'self'"
  },
  "update_url": "https://clients2.google.com/service/update2/crx"
}