Autify Recorder

Autify Recorder

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": "0.18.55",
  "manifest_version": 2,
  "name": "__MSG_appName__",
  "description": "__MSG_appDesc__",
  "default_locale": "en",
  "icons": {
    "128": "images/icon128.png"
  },
  "permissions": [
    "tabs",
    "http://*/*",
    "https://*/*",
    "activeTab",
    "webRequest",
    "contextMenus",
    "webNavigation",
    "debugger",
    "webRequestBlocking",
    "<all_urls>"
  ],
  "content_security_policy": "script-src 'self' 'sha256-Wf9MlqLyvQhtxTTzbiQ3mMqkhAfzVF+lXvf3NRg/duw='; object-src 'self'",
  "content_scripts": [
    {
      "matches": [
        "*://*.autify.com/*"
      ],
      "js": [
        "static/js/inject_to_editor.js"
      ]
    }
  ],
  "background": {
    "scripts": [
      "static/js/background.js"
    ]
  },
  "browser_action": {
    "default_icon": {
      "128": "images/icon128.png"
    },
    "default_title": "Autify Recorder"
  },
  "web_accessible_resources": [
    "static/media/*",
    "static/js/contentRecorder.js"
  ]
}