HTTP Version Indicator

HTTP Version Indicator

An indicator showing the HTTP version used to load the page in the address bar.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 2,
  "name": "__MSG_extensionName__",
  "version": "3.2.1",
  "description": "__MSG_extensionDescription__",
  "default_locale": "en",
  "icons": {
    "48": "icons/icon.svg",
    "64": "icons/icon.svg",
    "96": "icons/icon.svg",
    "128": "icons/icon.svg"
  },
  "browser_specific_settings": {
    "gecko": {
      "id": "[email protected]"
    }
  },
  "permissions": [
    "<all_urls>",
    "tabs",
    "webNavigation",
    "webRequest"
  ],
  "page_action": {
    "browser_style": false,
    "default_icon": {
      "16": "icons/action-default-16.png",
      "32": "icons/action-default-32.png"
    }
  },
  "background": {
    "scripts": [
      "background.js"
    ]
  }
}