Proxy Toggle

Proxy Toggle

Button to switch between system-set (off) and manually-set (on) proxy.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 2,
  "name": "Proxy Toggle",
  "version": "1.3",
  "description": "Button to switch between system-set (off) and manually-set (on) proxy.",
  "icons": {
    "48": "icon-48.png",
    "96": "icon-96.png"
  },
  "permissions": [
    "proxy"
  ],
  "browser_action": {
    "default_icon": {
      "32": "proxy_off-32.png",
      "64": "proxy_off-64.png"
    },
    "default_title": "Turn on proxy"
  },
  "background": {
    "scripts": [
      "background.js"
    ]
  }
}