EasyVPN - The Secured Connection for Web

EasyVPN - The Secured Connection for Web

Advanced Free VPN tool that helps to protect your privacy. Choose the country and connect to a secured network in a second

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "__MSG_name__",
  "description": "__MSG_desc__",
  "version": "1.2.2",
  "manifest_version": 2,
  "default_locale": "en",
  "background": {
    "scripts": [
      "./js/background.js"
    ]
  },
  "browser_action": {
    "default_icon": "images/icon-32.png",
    "default_title": "__MSG_title__",
    "default_popup": "./popup.html"
  },
  "icons": {
    "32": "images/icon-32.png",
    "64": "images/icon-64.png",
    "128": "images/icon-128.png"
  },
  "content_scripts": [
    {
      "js": [
        "js/content.js"
      ],
      "matches": [
        "*://*/*"
      ]
    }
  ],
  "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'",
  "permissions": [
    "webRequest",
    "webRequestBlocking",
    "*://*/*",
    "proxy",
    "storage"
  ],
  "web_accessible_resources": [
    "assets/*.svg",
    "assets/*.png",
    "lib/*.js"
  ]
}