Free VPN Edge extension - Best VPN by uVPN

Free VPN Edge extension - Best VPN by uVPN

Best free VPN Edge extension to unblock websites and hide IP address

Merlin
Additional files are visible only to premium users

manifest.json


{
  "name": "__MSG_extName__",
  "description": "__MSG_extDescription__",
  "short_name": "__MSG_extShortName__",
  "version": "8.0.1",
  "manifest_version": 3,
  "default_locale": "en",
  "minimum_chrome_version": "109.0",
  "background": {
    "service_worker": "serviceWorker.js"
  },
  "content_scripts": [
    {
      "matches": [
        "*://uvpn.me/*",
        "*://*.uvpn.me/*"
      ],
      "js": [
        "contentScript.js"
      ]
    }
  ],
  "permissions": [
    "webRequest",
    "webRequestAuthProvider",
    "proxy",
    "storage",
    "alarms",
    "tabs",
    "offscreen",
    "management"
  ],
  "host_permissions": [
    "*://*/*"
  ],
  "action": {
    "default_title": "__MSG_extTitle__",
    "default_popup": "popup.html",
    "default_icon": "icons/uvpn_128.png"
  },
  "icons": {
    "32": "icons/uvpn_32.png",
    "64": "icons/uvpn_64.png",
    "128": "icons/uvpn_128.png"
  },
  "content_security_policy": {
    "extension_pages": "script-src 'self'; object-src 'self';"
  },
  "options_ui": {
    "page": "options.html",
    "open_in_tab": true
  },
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}