Endtest - Codeless Automated Testing

Endtest - Codeless Automated Testing

Record your Web Tests and add them to your Endtest account.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Endtest - Codeless Automated Testing",
  "short_name": "Endtest",
  "author": "Endtest",
  "homepage_url": "https://endtest.io",
  "description": "Record your Web Tests and add them to your Endtest account.",
  "version": "0.0.1.4",
  "icons": {
    "16": "icon_new.png",
    "48": "icon_new.png",
    "128": "icon_new.png"
  },
  "background": {
    "service_worker": "background.js"
  },
  "permissions": [
    "activeTab",
    "cookies",
    "storage",
    "webNavigation"
  ],
  "host_permissions": [
    "*://*/*"
  ],
  "content_scripts": [
    {
      "all_frames": true,
      "match_origin_as_fallback": true,
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "jquery-3.3.1.min.js",
        "content.js",
        "popup.js"
      ]
    }
  ],
  "action": {
    "default_icon": "icon_new.png",
    "default_popup": "popup.html"
  }
}