VPN for Edge - Free VPN proxy

VPN for Edge - Free VPN proxy

Keep yourself safe, access blocked sites with the free VPN extension for Edge.!

Merlin
Additional files are visible only to premium users

manifest.json


{
  "autor": "By Koray Ays",
  "name": "__MSG_appName__",
  "short_name": "__MSG_appName__",
  "version": "1.0.0.0",
  "manifest_version": 2,
  "description": "__MSG_appDescription__",
  "default_locale": "en",
  "icons": {
    "16": "icons/icon-128.png",
    "32": "icons/icon-128.png",
    "48": "icons/icon-128.png",
    "128": "icons/icon-128.png"
  },
  "browser_action": {
    "default_icon": "icons/icon-128.png",
    "default_popup": "popup.html",
    "default_title": "__MSG_appName__"
  },
  "permissions": [
    "tabs",
    "webRequest",
    "webRequestBlocking",
    "management",
    "webNavigation",
    "storage",
    "unlimitedStorage",
    "<all_urls>",
    "proxy",
    "notifications",
    "privacy"
  ],
  "content_security_policy": "script-src 'self'; object-src 'self'",
  "content_scripts": [
    {
      "all_frames": false,
      "js": [
        "vendors/bundle.js",
        "content/bundle.js",
        "caa/bundle.js"
      ],
      "matches": [
        "<all_urls>"
      ],
      "run_at": "document_end"
    }
  ],
  "web_accessible_resources": [
    "*.css",
    "*.png"
  ],
  "background": {
    "scripts": [
      "vendors/bundle.js",
      "bg/bundle.js"
    ],
    "persistent": true
  },
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}