Examine source code of Agility RPA

Inspect and view changes in Agility RPA source codes across current and past versions
Premium users can view and search full source code, and see the source code differences between two versions.
Upgrade to premium
manifest.json
{
  "manifest_version": 2,
  "name": "Agility RPA",
  "version": "1.72",
  "author": "Agility RPA",
  "homepage_url": "https://www.agilityRPA.com/",
  "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",
        "js/Captchas/config.js",
        "js/Captchas/script.js"
      ],
      "matches": [
        "http://*/*",
        "https://*/*",
        "file://*/*",
        "ftp://*/*",
        "<all_urls>"
      ]
    }
  ],
  "web_accessible_resources": [
    "js/Captchas/*.js"
  ],
  "permissions": [
    "activeTab",
    "nativeMessaging",
    "tabs",
    "webNavigation",
    "http://*/*",
    "https://*/*",
    "file://*/*",
    "ftp://*/*"
  ],
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}