AdGuard VPN — Privacy & Security

AdGuard VPN — Privacy & Security

Makes the Internet open and your data safe. Topnotch VPN from the creators of famous ad blocker.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "name": "__MSG_name__",
  "short_name": "__MSG_short_name__",
  "author": "Adguard Software Ltd",
  "version": "2.2.15",
  "default_locale": "en",
  "description": "__MSG_description__",
  "icons": {
    "16": "assets/images/icons/enabled-16.png",
    "128": "assets/images/icons/enabled-128.png"
  },
  "content_scripts": [
    {
      "matches": [
        "https://*/oauth.html?adguard-vpn=1*"
      ],
      "js": [
        "auth.js"
      ],
      "run_at": "document_start"
    },
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "custom-dns-links.js"
      ],
      "run_at": "document_start"
    }
  ],
  "permissions": [
    "alarms",
    "contextMenus",
    "management",
    "notifications",
    "privacy",
    "proxy",
    "storage",
    "tabs",
    "unlimitedStorage",
    "webRequest"
  ],
  "manifest_version": 3,
  "action": {
    "default_icon": {
      "19": "assets/images/icons/disabled-19.png",
      "38": "assets/images/icons/disabled-38.png"
    },
    "default_title": "__MSG_name__",
    "default_popup": "popup.html"
  },
  "content_security_policy": {
    "extension_pages": "script-src 'self'; object-src 'self'"
  },
  "browser_specific_settings": {
    "gecko": {
      "id": "[email protected]",
      "strict_min_version": "91.1.0"
    }
  },
  "background": {
    "page": "background.html"
  },
  "options_ui": {
    "page": "options.html",
    "open_in_tab": true
  },
  "host_permissions": [
    "<all_urls>"
  ],
  "protocol_handlers": [
    {
      "protocol": "ext+adguardvpn",
      "name": "AdGuard VPN Extension",
      "uriTemplate": "/custom-protocol-handler.html#matched=%s"
    }
  ]
}