Examine source code of ActiveHTTPS - Automatic Encryption

Inspect and view changes in ActiveHTTPS - Automatic Encryption 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
{
  "name": "ActiveHTTPS - Automatic Encryption",
  "short_name": "ActiveHTTPS",
  "description": "Automatically Encrypt all Web Traffic",
  "permissions": [
    "activeTab",
    "identity",
    "identity.email",
    "storage",
    "webRequest",
    "webRequestBlocking",
    "webNavigation",
    "tabs",
    "<all_urls>"
  ],
  "background": {
    "scripts": [
      "background.js"
    ],
    "persistent": true
  },
  "version": "1.1",
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "jquery.js",
        "script.js"
      ]
    }
  ],
  "web_accessible_resources": [
    "*.png"
  ],
  "manifest_version": 2,
  "browser_action": {
    "default_title": "ActiveHTTPS",
    "default_popup": "popup.html",
    "default_icon": {
      "16": "16.png",
      "32": "32.png",
      "48": "48.png",
      "128": "128.png",
      "150": "150.png",
      "512": "512.png"
    }
  },
  "icons": {
    "16": "16.png",
    "32": "32.png",
    "48": "48.png",
    "128": "128.png",
    "150": "150.png",
    "512": "512.png"
  },
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}