HAR Recorder

HAR Recorder

Records network request and generates HAR file.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "HAR Recorder",
  "description": "Records network request and generates HAR file.",
  "version": "1.5",
  "manifest_version": 3,
  "background": {
    "service_worker": "background.js",
    "type": "module"
  },
  "action": {
    "default_icon": {
      "16": "icons8-record-16.png",
      "32": "icons8-record-32.png",
      "48": "icons8-record-48.png",
      "64": "icons8-record-64.png",
      "128": "icons8-record-100.png"
    }
  },
  "permissions": [
    "tabs",
    "unlimitedStorage",
    "storage",
    "debugger",
    "scripting"
  ],
  "host_permissions": [
    "https://*/*",
    "http://*/*"
  ]
}