Examine source code of SecureVPN

Inspect and view changes in SecureVPN 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
{
  "author": "Under Secure Inc.",
  "version": "1.0.1",
  "manifest_version": 2,
  "name": "SecureVPN",
  "short_name": "securevpn",
  "icons": {
    "16": "static/icon_16.png",
    "32": "static/icon_32.png",
    "64": "static/icon_64.png",
    "128": "static/icon_128.png"
  },
  "minimum_chrome_version": "22.0",
  "background": {
    "scripts": [
      "browser-polyfill.min.js",
      "background.js"
    ]
  },
  "browser_action": {
    "default_popup": "static/popup.html",
    "default_title": "SecureVPN"
  },
  "permissions": [
    "proxy",
    "storage",
    "webRequest",
    "webRequestBlocking",
    "<all_urls>"
  ],
  "content_security_policy": "script-src 'self'; object-src 'self';",
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}