Apidog Browser Extension

Apidog Browser Extension

All-in-One workspace for API Design, Documentation, Debug, Mock, Test.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "name": "Apidog Browser Extension",
  "description": "All-in-One workspace for API Design, Documentation, Debug, Mock, Test.",
  "version": "1.0.3",
  "manifest_version": 3,
  "icons": {
    "96": "logo-96.png",
    "128": "logo-128.png"
  },
  "permissions": [],
  "host_permissions": [
    "*://*.apidog.com/",
    "*://*/"
  ],
  "background": {
    "service_worker": "background.js"
  },
  "action": {
    "default_title": "Apidog",
    "default_icon": "logo-128.png"
  },
  "web_accessible_resources": [
    {
      "matches": [
        "*://*.apidog.com/*"
      ],
      "resources": [
        "adapter.js"
      ]
    }
  ],
  "content_scripts": [
    {
      "matches": [
        "*://*.apidog.com/*"
      ],
      "js": [
        "runtime.js"
      ]
    }
  ],
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}