Examine source code of Peek Request Header

Inspect and view changes in Peek Request Header source codes across current and past versions
Premium users can view and search full source code, and see the source code differences between two versions.
Upgrade to premium
manifest.json
{
  "name": "Peek Request Header",
  "description": "Peek into the browser's headers json data for each request",
  "short_description": "Peek into the browser's headers json data for each request",
  "version": "1.0",
  "manifest_version": 3,
  "icons": {
    "16": "images/icon.png",
    "24": "images/icon.png",
    "32": "images/icon.png",
    "128": "images/icon128.png"
  },
  "permissions": [
    "webRequest",
    "storage"
  ],
  "host_permissions": [
    "*://*/*"
  ],
  "background": {
    "service_worker": "background.js"
  },
  "action": {
    "default_popup": "popup.html"
  },
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}