HTTP Web Headers

HTTP Web Headers

Inspect and view HTTP request headers for the website in view: the status, any possible redirection and all the headers.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "author": "Anne Neidan",
  "background": {
    "persistent": true,
    "scripts": [
      "background.js"
    ]
  },
  "browser_action": {
    "default_icon": "icons/icon-48.png",
    "default_popup": "popup.html",
    "default_title": "Inspect HTTP Web Headers"
  },
  "description": "Inspect and view HTTP request headers for the website in view: the status, any possible redirection and all the headers.",
  "icons": {
    "16": "icons/icon-16.png",
    "38": "icons/icon-38.png",
    "48": "icons/icon-48.png",
    "64": "icons/icon-64.png",
    "128": "icons/icon-128.png"
  },
  "manifest_version": 2,
  "name": "HTTP Web Headers",
  "offline_enabled": true,
  "permissions": [
    "tabs",
    "activeTab",
    "webRequest",
    "webRequestBlocking",
    "webNavigation",
    "storage",
    "*://*/*"
  ],
  "short_name": "HTTP Headers",
  "version": "1.1.0",
  "content_scripts": [
    {
      "matches": [
        "*://*/*"
      ],
      "js": [
        "content-scripts/idle.js"
      ],
      "all_frames": true,
      "run_at": "document_idle"
    },
    {
      "matches": [
        "*://*/*"
      ],
      "js": [
        "content-scripts/start.js"
      ],
      "all_frames": true,
      "run_at": "document_start"
    }
  ]
}