Loadmill Test Composer

Loadmill Test Composer

Generate API Tests using AI

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Loadmill Test Composer",
  "description": "Generate API Tests using AI",
  "version": "0.30",
  "manifest_version": 3,
  "permissions": [
    "clipboardWrite",
    "storage",
    "tabs",
    "webRequest"
  ],
  "host_permissions": [
    "ws://*/*",
    "wss://*/*",
    "<all_urls>"
  ],
  "action": {
    "default_title": "Loadmill Chrome Devtools",
    "default_icon": "pinmill.png",
    "default_popup": "popup.html"
  },
  "icons": {
    "16": "images/pinmill16.png",
    "48": "images/pinmill48.png",
    "128": "images/pinmill48.png"
  },
  "devtools_page": "devtools.html",
  "background": {
    "service_worker": "background.js"
  },
  "content_scripts": [
    {
      "matches": [
        "https://*/*"
      ],
      "js": [
        "content-script.js"
      ]
    }
  ]
}