Infinity VPN - Free VPN for Chrome

Infinity VPN - Free VPN for Chrome

Totally free and unlimited VPN service for Chrome. Helps to mask the IP address and unblock any website

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.0.5",
  "manifest_version": 2,
  "default_locale": "en",
  "icons": {
    "32": "assets/static/32.png",
    "64": "assets/static/64.png",
    "128": "assets/static/128.png"
  },
  "permissions": [
    "webRequest",
    "webRequestBlocking",
    "*://*/*",
    "proxy",
    "storage"
  ],
  "browser_action": {
    "default_icon": "assets/static/32.png",
    "default_title": "__MSG_title__",
    "default_popup": "./popup.html"
  },
  "background": {
    "scripts": [
      "./js/background.js"
    ]
  },
  "content_security_policy": "script-src 'self'; object-src 'self'",
  "web_accessible_resources": [
    "assets/*.svg",
    "assets/*.png",
    "assets/*.css",
    "assets/*.otf"
  ]
}