autoMagiQ Recorder

autoMagiQ Recorder

autoMagiQ - A no-code test automation platform for modern engineering teams streamlining test creation, management, and reporting.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "autoMagiQ Recorder",
  "description": "autoMagiQ - A no-code test automation platform for modern engineering teams streamlining test creation, management, and reporting.",
  "version": "1.2.1",
  "manifest_version": 3,
  "action": {
    "default_icon": {
      "16": "/assets/icon16.png",
      "32": "/assets/icon32.png",
      "48": "/assets/icon48.png",
      "128": "/assets/icon128.png"
    },
    "default_popup": "popup.html",
    "recorder_popup": "recorder.html"
  },
  "icons": {
    "16": "/assets/icon16.png",
    "32": "/assets/icon32.png",
    "48": "/assets/icon48.png",
    "128": "/assets/icon128.png"
  },
  "background": {
    "service_worker": "service-worker.js"
  },
  "permissions": [
    "storage",
    "activeTab",
    "scripting",
    "unlimitedStorage",
    "declarativeContent",
    "tabs",
    "notifications",
    "webNavigation"
  ],
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "libs/DOMPath.js",
        "libs/find-element.js",
        "libs/finder.js",
        "content_scripts/content.js",
        "content_scripts/playbackContent.js"
      ],
      "all_frames": true
    }
  ],
  "host_permissions": [
    "http://*/",
    "https://*/*"
  ],
  "content_security_policy": {
    "extension_pages": "default-src 'none' ; font-src 'self' ; img-src 'self' data: ; script-src 'self' ; style-src 'self' 'unsafe-inline' ; connect-src http: https: ; object-src 'none' ; child-src 'none' ; "
  },
  "web_accessible_resources": [
    {
      "matches": [
        "<all_urls>"
      ],
      "resources": [
        "__plasmo_hmr_proxy__"
      ]
    }
  ]
}