Host switcher

Host switcher

Host switcher

Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Host switcher",
  "description": "Host switcher",
  "minimum_chrome_version": "22",
  "version": "0.0.1",
  "icons": {
    "16": "icons/16.png",
    "128": "icons/128.png"
  },
  "background": {
    "scripts": [
      "js/background.js"
    ]
  },
  "content_scripts": [
    {
      "exclude_globs": [],
      "include_globs": [
        "*"
      ],
      "js": [
        "/libs/jquery.min.js",
        "/js/script.js"
      ],
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "run_at": "document_end",
      "all_frames": false
    }
  ],
  "browser_action": {
    "default_icon": "icons/16.png",
    "default_title": "Host Switcher",
    "default_popup": "pages/popup.html"
  },
  "permissions": [
    "proxy",
    "tabs",
    "webRequest",
    "webRequestBlocking",
    "storage",
    "http://*/*",
    "https://*/*",
    "<all_urls>"
  ]
}