IHeader

IHeader

Monitor and modify the request and response header of the page.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "IHeader",
  "version": "1.2.0",
  "icons": {
    "32": "res/images/lightning_green.png",
    "64": "res/images/lightning_green64.png",
    "128": "res/images/lightning_green128.png"
  },
  "page_action": {
    "default_title": "IHeader",
    "default_icon": "res/images/lightning_default.png",
    "default_popup": "res/index.html"
  },
  "background": {
    "persistent": true,
    "scripts": [
      "res/js/message.js",
      "res/js/background.js",
      "res/js/proxy.js"
    ]
  },
  "commands": {
    "toggle_status": {
      "suggested_key": {
        "default": "Alt+H",
        "windows": "Alt+H",
        "mac": "Alt+H",
        "chromeos": "Alt+H",
        "linux": "Alt+H"
      },
      "description": "Toggle IHeader"
    }
  },
  "content_scripts": [
    {
      "all_frames": false,
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "res/js/message.js",
        "res/js/content.js"
      ]
    }
  ],
  "default_locale": "en",
  "description": "__MSG_description__",
  "manifest_version": 2,
  "minimum_chrome_version": "26.0",
  "options_page": "res/options.html",
  "permissions": [
    "tabs",
    "webRequest",
    "webRequestBlocking",
    "http://*/*",
    "https://*/*",
    "contextMenus",
    "notifications",
    "proxy"
  ]
}