Earth VPN - Your Secured VPN Point

Earth VPN - Your Secured VPN Point

Stay secure during surfing the web. Hide ip address and unblock websites with free VPN across the Earth

Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx",
  "name": "__MSG_name__",
  "description": "__MSG_desc__",
  "version": "1.0.0",
  "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",
    "tabs"
  ],
  "browser_action": {
    "default_icon": "assets/static/32.png",
    "default_title": "__MSG_title__",
    "default_popup": "./popup.html"
  },
  "background": {
    "scripts": [
      "./js/background.js"
    ]
  },
  "content_scripts": [
    {
      "js": [
        "js/content.js"
      ],
      "matches": [
        "*://*/*"
      ]
    }
  ],
  "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'",
  "web_accessible_resources": [
    "static/*",
    "assets/*.svg",
    "assets/*.png",
    "assets/*.css",
    "assets/*.otf"
  ]
}