HttpWatch

HttpWatch

Works with HttpWatch software (version 13 - 15) on Windows to show HTTP/HTTPS traffic generated by the Edge browser

Merlin
Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 3,
  "name": "HttpWatch",
  "short_name": "HttpWatch",
  "description": "Works with HttpWatch software (version 13 - 15) on Windows to show HTTP/HTTPS traffic generated by the Edge browser",
  "version": "15.0.4",
  "minimum_chrome_version": "105",
  "homepage_url": "https://www.httpwatch.com",
  "icons": {
    "16": "httpwatch_16.png",
    "32": "httpwatch_32.png",
    "48": "httpwatch_48.png",
    "128": "httpwatch_128.png"
  },
  "action": {
    "default_icon": {
      "16": "httpwatch_16_d.png",
      "32": "httpwatch_32_d.png",
      "48": "httpwatch_48_d.png",
      "128": "httpwatch_128_d.png"
    },
    "default_title": "HttpWatch: record, analyze and save HTTP requests",
    "default_popup": "popup.htm"
  },
  "commands": {
    "_execute_action": {
      "suggested_key": {
        "default": "Ctrl+Shift+H"
      }
    }
  },
  "permissions": [
    "activeTab",
    "browsingData",
    "contextMenus",
    "debugger",
    "nativeMessaging",
    "scripting",
    "tabs",
    "webNavigation"
  ],
  "host_permissions": [
    "*://*/*"
  ],
  "background": {
    "service_worker": "httpwatch.js",
    "type": "module"
  },
  "web_accessible_resources": [
    {
      "resources": [
        "recording_started.htm"
      ],
      "matches": [
        "*://*/*"
      ]
    }
  ],
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}