Examine source code of HTTP Only Mode

Inspect and view changes in HTTP Only Mode source codes across current and past versions
Premium users can view and search full source code, and see the source code differences between two versions.
Upgrade to premium
manifest.json
{
  "manifest_version": 2,
  "name": "HTTP Only Mode",
  "short_name": "HTTP(!S)",
  "description": "This extension will force all websites to use HTTP only.",
  "version": "1.0",
  "author": "Joshua Herron",
  "icons": {
    "16": "img/icon16.png",
    "32": "img/icon32.png",
    "48": "img/icon48.png",
    "96": "img/icon96.png",
    "128": "img/icon128.png"
  },
  "browser_action": {
    "default_icon": {
      "16": "img/icon16.png",
      "32": "img/icon32.png"
    },
    "default_title": "HTTP Only Mode",
    "default_popup": "popup.html"
  },
  "permissions": [
    "webRequest",
    "webRequestBlocking",
    "storage",
    "tabs",
    "<all_urls>"
  ],
  "background": {
    "scripts": [
      "background.js"
    ],
    "persistent": true
  },
  "web_accessible_resources": [
    "block.png",
    "img/alert.svg",
    "img/blocked.png"
  ],
  "browser_specific_settings": {
    "gecko": {
      "id": "httponlymode@joshiepoo.com"
    }
  }
}