HMA VPN Proxy Unblocker

HMA VPN Proxy Unblocker

Hide your location to unblock websites and anonymously access your favorite news, TV shows, and social networks from anywhere.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "__MSG_product_name__",
  "author": "Privax",
  "short_name": "__MSG_product_name_short_chrome__",
  "version": "1.1.934",
  "manifest_version": 2,
  "description": "__MSG_product_description__",
  "homepage_url": "https://www.hidemyass.com",
  "permissions": [
    "alarms",
    "management",
    "storage",
    "tabs",
    "privacy",
    "proxy",
    "notifications",
    "webNavigation",
    "webRequest",
    "webRequestBlocking",
    "<all_urls>"
  ],
  "web_accessible_resources": [],
  "default_locale": "en",
  "background": {
    "scripts": [
      "js/background.js"
    ],
    "persistent": true
  },
  "browser_action": {
    "default_title": "VPN",
    "default_popup": "html/popup.html",
    "default_icon": {
      "16": "img/icon16.png",
      "32": "img/icon32.png"
    }
  },
  "icons": {
    "16": "img/icon16-active.png",
    "32": "img/icon32-active.png",
    "48": "img/icon48-active.png",
    "64": "img/icon64-active.png",
    "96": "img/icon96-active.png",
    "128": "img/icon128-active.png",
    "256": "img/icon256-active.png"
  },
  "content_scripts": [
    {
      "all_frames": true,
      "js": [
        "js/tabKillerContent.js"
      ],
      "matches": [
        "<all_urls>"
      ],
      "run_at": "document_end",
      "match_about_blank": true
    },
    {
      "js": [
        "js/proxyContent.js"
      ],
      "matches": [
        "*://*.hidemyass.com/*"
      ],
      "run_at": "document_start"
    }
  ]
}