HTTP Version Indicator

HTTP Version Indicator

Adds a color-based indicator for the HTTP version of the top‐level document of a tab in the address bar.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 2,
  "name": "__MSG_extension_name__",
  "version": "2",
  "description": "__MSG_extension_description__",
  "default_locale": "en",
  "icons": {
    "1": "Icons/HTTP%20Version%20Indicator%20Icon.svg"
  },
  "applications": {
    "gecko": {
      "id": "[email protected]"
    }
  },
  "permissions": [
    "http://*/*",
    "https://*/*",
    "webRequest"
  ],
  "page_action": {
    "browser_style": false
  },
  "background": {
    "scripts": [
      "HTTP%20Version%20Indicator%20Background%20Script.js"
    ]
  }
}