web proxy control

web proxy control

代理配置程序 支持HTTPS/SOCKS/HTTP代理,支持域名排除名单,支持GFWList

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "web proxy control",
  "version": "0.9",
  "manifest_version": 2,
  "description": "代理配置程序 支持HTTPS/SOCKS/HTTP代理,支持域名排除名单,支持GFWList",
  "icons": {
    "128": "icon_128.png"
  },
  "background": {
    "persistent": true,
    "scripts": [
      "lib/common.js",
      "bg.js"
    ]
  },
  "permissions": [
    "proxy",
    "tabs",
    "*://*/*",
    "webRequest",
    "webRequestBlocking"
  ],
  "browser_action": {
    "default_title": "",
    "default_icon": "icon_19.png",
    "default_popup": "popup.html"
  },
  "options_ui": {
    "chrome_style": true,
    "page": "settings.html"
  }
}