Examine source code of Avo Genius

Inspect and view changes in Avo Genius 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
{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Avo Genius",
  "description": "Avo Genius is a smart record engine which allow users to record end to end test scenarios on any Web App including Salesforce, etc.",
  "version": "24.2.5",
  "manifest_version": 3,
  "action": {
    "default_title": "Start Genius"
  },
  "icons": {
    "32": "logo_32.png",
    "64": "logo_64.png"
  },
  "permissions": [
    "tabs",
    "storage",
    "system.display",
    "windows",
    "alarms"
  ],
  "background": {
    "service_worker": "./background.js"
  },
  "host_permissions": [
    "<all_urls>"
  ],
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "match_about_blank": true,
      "js": [
        "./content.js",
        "./chrome_common.js",
        "./common.js",
        "./recordcommon.js",
        "./domrecorder.js",
        "./main.js"
      ],
      "all_frames": true
    }
  ],
  "externally_connectable": {
    "ids": [
      "*"
    ],
    "matches": [
      "http://my.localhost:3000/*",
      "https://localhost:3000/*",
      "http://localhost:3000/*",
      "http://my.localhost/*",
      "https://my.localhost/*",
      "http://my.localhost:443/*",
      "https://my.localhost:443/*",
      "https://192.168.217.108/*",
      "https://*.avoassure.ai/*",
      "https://*.slksoft.com/*",
      "https://*.slkgroup.com/*",
      "https://*.avoautomation.com/*",
      "http://*/*",
      "https://*/*"
    ]
  },
  "key": "MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA1qVrv//3d2kBuM50uG3bduzk6N52hv2YLEm58dnQrQKhBKDiocxTtw0MHm8/s86vaC7a9XgKyi3NroSEzGRGKaoZCF3t+R7Bv2eydwrjWAFe5SIXET5P0qPN2Qo8iFiMctYWTrRs8mbJ2Rb3HHsqTfH0I6oTs4Ml+HZNxAdMp0P/g/VUfDkZwK4Hqku8Uy4OhfXNQux1YyeHeITV4ctY60F4loHx2N/t+hRUwIl0sH0rZyZXZJj8XUI1Hdv5pdSq96ZTuqAc/qRoJr3wl58E/Tol8y1y1cS+T4K1ae7frL90DKv45ZiOB0/E/g6sslUQu/hEZ1XnjQUZ4+0ohLAifwIDAQAB"
}