V-PN

V-PN

V-PN is a very fast, free extension with unlimited bandwidth. Turn the VPN on and off in just one click. For comfortable use, pin…

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "__MSG_appName__",
  "manifest_version": 3,
  "version": "0.0.5",
  "permissions": [
    "storage",
    "proxy",
    "cookies",
    "alarms"
  ],
  "host_permissions": [
    "<all_urls>"
  ],
  "background": {
    "service_worker": "background.js"
  },
  "icons": {
    "16": "assets/icons/logo16.png",
    "48": "assets/icons/logo64.png",
    "128": "assets/icons/logo128.png"
  },
  "default_locale": "en",
  "action": {
    "default_icon": {
      "16": "assets/icons/logo16.png",
      "32": "assets/icons/logo16-enabled.png"
    },
    "default_popup": "assets/popup/popup.html"
  },
  "content_security_policy": {
    "extension_pages": "default-src 'self'; connect-src https://* http://* http://*:* https://*:* data: blob: filesystem:;"
  },
  "content_scripts": [
    {
      "all_frames": false,
      "js": [
        "content.js"
      ],
      "match_about_blank": false,
      "matches": [
        "*://*/*"
      ],
      "run_at": "document_start"
    }
  ]
}