Tunnelbird Free VPN

Tunnelbird Free VPN

Unblock websites in your country, company or school with Tunnelbird Free VPN. Unlimited and free VPN.

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_EXTENSION_NAME__",
  "short_name": "__MSG_EXTENSION_SHORT_NAME__",
  "description": "__MSG_EXTENSION_DESCRIPTION__",
  "default_locale": "en",
  "version": "2.0.0",
  "icons": {
    "32": "assets/icons/32.png",
    "128": "assets/icons/128.png"
  },
  "browser_action": {
    "default_icon": "assets/icons/32.png",
    "default_popup": "popup.html"
  },
  "background": {
    "scripts": [
      "background.js"
    ],
    "persistent": true
  },
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "js": [
        "content.js"
      ]
    }
  ],
  "permissions": [
    "<all_urls>",
    "cookies",
    "proxy",
    "storage",
    "tabs",
    "webRequest"
  ]
}