DoesVPN

DoesVPN

Presenting the DoesVPN FREE Chrome extension: Download the best VPN browser extension for Google Chrome and get unlimited…

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "minimum_chrome_version": "88.0",
  "background": {
    "service_worker": "./background.js"
  },
  "action": {
    "default_popup": "static/popup.html",
    "default_title": "DoesVPN"
  },
  "permissions": [
    "alarms",
    "background",
    "proxy",
    "storage"
  ],
  "host_permissions": [
    "*://*/*"
  ],
  "content_scripts": [
    {
      "all_frames": true,
      "js": [
        "static/content/content.js"
      ],
      "matches": [
        "https://www.youtube.com/*",
        "https://www.google.com/search*",
        "https://www.google.at/search*",
        "https://www.google.be/search*",
        "https://www.google.ca/search*",
        "https://www.google.ch/search*",
        "https://www.google.de/search*",
        "https://www.google.dk/search*",
        "https://www.google.es/search*",
        "https://www.google.fi/search*",
        "https://www.google.fr/search*",
        "https://www.google.it/search*",
        "https://www.google.se/search*",
        "https://www.google.nl/search*",
        "https://www.google.no/search*",
        "https://www.google.cl/search*",
        "https://www.google.ie/search*",
        "https://www.google.co.in/search*",
        "https://www.google.com.ph/search*",
        "https://www.google.com.my/search*",
        "https://www.google.com.id/search*",
        "https://www.google.com.pe/search*",
        "https://www.google.com.tw/search*",
        "https://www.google.com.sg/search*",
        "https://www.google.com.co/search*",
        "https://www.google.com.ar/search*",
        "https://www.google.com.hk/search*",
        "https://www.google.com.mx/search*",
        "https://www.google.com.ve/search*",
        "https://www.google.com.au/search*",
        "https://www.google.com.br/search*",
        "https://www.google.com.th/search*",
        "https://www.google.com.vn/search*",
        "https://www.google.com.au/search*",
        "https://www.google.co.uk/search*",
        "https://www.google.co.nz/search*"
      ],
      "run_at": "document_start"
    }
  ],
  "author": "doesvpn.digital Inc.",
  "version": "3.0.3",
  "manifest_version": 3,
  "name": "DoesVPN",
  "short_name": "doesvpn",
  "icons": {
    "16": "static/icon_16.png",
    "32": "static/icon_32.png",
    "64": "static/icon_64.png",
    "128": "static/icon_128.png"
  },
  "content_security_policy": {
    "object-src": "self"
  }
}