Header View

Header View

View and inspect HTTP Headers

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "author": "Nidhognit",
  "manifest_version": 2,
  "name": "Header View",
  "short_name": "Header View",
  "version": "1.0.7",
  "background": {
    "persistent": true,
    "scripts": [
      "listener.bundle.js"
    ]
  },
  "browser_action": {
    "default_icon": "icons/48.png",
    "default_popup": "popup.html",
    "default_title": "View HTTP headers"
  },
  "description": "View and inspect HTTP Headers",
  "icons": {
    "16": "icons/16.png",
    "32": "icons/32.png",
    "48": "icons/48.png",
    "64": "icons/64.png",
    "128": "icons/128.png",
    "240": "icons/240.png"
  },
  "permissions": [
    "tabs",
    "webRequest",
    "webNavigation",
    "http://*/*",
    "https://*/*"
  ]
}