AutonomIQ AI Enterprise Recorder

AutonomIQ AI Enterprise Recorder

Selenium Test Generator for creating low-code tests in the AutonomIQ studio.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "AutonomIQ AI Enterprise Recorder",
  "description": "Selenium Test Generator for creating low-code tests in the AutonomIQ studio.",
  "manifest_version": 2,
  "homepage_url": "https://www.autonomiq.io",
  "version": "3.0.59",
  "browser_action": {
    "default_icon": "icons-48.png",
    "default_title": "AutonomiQ"
  },
  "icons": {
    "48": "icons-48.png",
    "96": "icons-96.png",
    "128": "icons-128.png"
  },
  "background": {
    "scripts": [
      "content-script/browser-polyfill.min.js",
      "extension/background.js"
    ],
    "persistent": false
  },
  "permissions": [
    "tabs",
    "tabCapture",
    "activeTab",
    "contextMenus",
    "webNavigation",
    "notifications"
  ],
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "css": [
        "content-script/contentScript.css"
      ],
      "all_frames": true,
      "js": [
        "content-script/browser-polyfill.min.js",
        "content-script/contentScript.js"
      ],
      "match_about_blank": true
    },
    {
      "matches": [
        "<all_urls>"
      ],
      "all_frames": true,
      "js": [
        "content-script/recorder.js",
        "content-script/xpath.js",
        "content-script/web-page.js",
        "content-script/shadowDom.js"
      ],
      "match_about_blank": true
    }
  ],
  "web_accessible_resources": [
    "icons/logo.png"
  ]
}