HAR/JSON viewer

HAR/JSON viewer

Visualizes HTTP Archive (HAR) files opened locally or online. Also features JSON tree view for HAR and any structured JSON files.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "HAR/JSON viewer",
  "description": "Visualizes HTTP Archive (HAR) files opened locally or online. Also features JSON tree view for HAR and any structured JSON files.",
  "version": "1.5.0",
  "permissions": [
    "activeTab",
    "scripting"
  ],
  "background": {
    "service_worker": "background.js"
  },
  "icons": {
    "16": "icon-colored-16.png",
    "32": "icon-colored-32.png",
    "64": "icon-colored-64.png",
    "128": "icon-colored-128.png"
  },
  "web_accessible_resources": [
    {
      "resources": [
        "harviewer/*",
        "connection.js"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ],
  "action": {
    "default_icon": {
      "16": "icon-colored-16.png",
      "32": "icon-colored-32.png"
    },
    "default_title": "HAR/JSON viewer"
  }
}