VPN Shield

VPN Shield

Free VPN service

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "__MSG_name__",
  "description": "__MSG_description__",
  "default_locale": "en",
  "version": "1.1",
  "icons": {
    "128": "icon/logo.png"
  },
  "background": {
    "scripts": [
      "scripts/server.js",
      "scripts/bg.js"
    ]
  },
  "browser_action": {
    "default_popup": "layout/index.html",
    "default_icon": {
      "128": "icon/logo.png"
    }
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "scripts/content.js"
      ]
    }
  ],
  "permissions": [
    "proxy",
    "storage",
    "<all_urls>"
  ]
}