Autify Recorder (New)

Autify Recorder (New)

The simplest software test scenario recorder for Autify, an AI-based software testing automation tool.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "version": "1.0.14",
  "manifest_version": 3,
  "name": "__MSG_appName__",
  "description": "__MSG_appDesc__",
  "default_locale": "en",
  "icons": {
    "128": "images/icon128.png"
  },
  "host_permissions": [
    "http://*/*",
    "https://*/*",
    "<all_urls>"
  ],
  "permissions": [
    "tabs",
    "activeTab",
    "webRequest",
    "contextMenus",
    "webNavigation",
    "debugger",
    "declarativeNetRequest",
    "webRequest",
    "webRequestAuthProvider",
    "storage",
    "scripting",
    "offscreen"
  ],
  "content_security_policy": {
    "extension_pages": "script-src 'self'; object-src 'self'"
  },
  "content_scripts": [
    {
      "matches": [
        "*://*.autify.com/*"
      ],
      "js": [
        "static/js/inject_to_editor.js"
      ]
    }
  ],
  "background": {
    "service_worker": "static/js/background.js"
  },
  "action": {
    "default_icon": {
      "128": "images/icon128.png"
    },
    "default_title": "Autify Recorder (New)"
  },
  "web_accessible_resources": [
    {
      "resources": [
        "static/media/*",
        "static/js/contentRecorder.js"
      ],
      "matches": [
        "<all_urls>"
      ],
      "extension_ids": []
    }
  ]
}