Human Headers

Human Headers

Human Headers is a Chrome extension that parses X-Human headers to allow developers to leave their mark on the fabric of the web.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Human Headers",
  "description": "Human Headers is a Chrome extension that parses X-Human headers to allow developers to leave their mark on the fabric of the web.",
  "version": "0.1",
  "permissions": [
    "<all_urls>",
    "webRequest"
  ],
  "background": {
    "scripts": [
      "hh.js"
    ],
    "persistent": true
  },
  "browser_action": {
    "default_icon": "hh.png",
    "default_popup": "popup.html"
  }
}