Agility RPA

Agility RPA

Agility RPA Integration with Chrome.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Agility RPA",
  "version": "1.71",
  "description": "Agility RPA Integration with Chrome.",
  "short_name": "AgilityRPA",
  "icons": {
    "19": "images/icon_19.png",
    "38": "images/icon_38.png",
    "128": "images/icon_128.png"
  },
  "browser_action": {
    "default_title": "Agility Extension",
    "default_icon": {
      "19": "images/icon_19.png",
      "38": "images/icon_38.png"
    },
    "default_popup": "html/main.html"
  },
  "background": {
    "page": "html/background.html",
    "persistent": true
  },
  "content_scripts": [
    {
      "js": [
        "js/jquery-3.3.1.min.js"
      ],
      "matches": [
        "http://*/*",
        "https://*/*",
        "file://*/*",
        "ftp://*/*"
      ]
    }
  ],
  "permissions": [
    "activeTab",
    "nativeMessaging",
    "tabs",
    "webNavigation",
    "http://*/*",
    "https://*/*",
    "file://*/*",
    "ftp://*/*"
  ]
}