MM3-ProxySwitch

MM3-ProxySwitch

Switch between a direct internet connection and several proxy settings

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "MM3-ProxySwitch",
  "short_name": "ProxySwitch",
  "description": "__MSG_appDescription__",
  "version": "2018.332",
  "author": "MM3Tools",
  "icons": {
    "48": "img/MM3_48.png",
    "96": "img/MM3_96.png"
  },
  "default_locale": "en",
  "browser_action": {
    "browser_style": true,
    "default_popup": "popup.html",
    "default_icon": {
      "16": "img/MM3_16off.png",
      "32": "img/MM3_32off.png"
    }
  },
  "background": {
    "scripts": [
      "util.js",
      "ProxySwitch.js"
    ]
  },
  "permissions": [
    "storage",
    "proxy",
    "browsingData",
    "http://*/*",
    "https://*/*"
  ],
  "commands": {
    "ProxySwitch-1": {
      "suggested_key": {
        "default": "Ctrl+Shift+1"
      },
      "description": "1"
    },
    "ProxySwitch-2": {
      "suggested_key": {
        "default": "Ctrl+Shift+2"
      },
      "description": "2"
    },
    "ProxySwitch-3": {
      "suggested_key": {
        "default": "Ctrl+Shift+3"
      },
      "description": "3"
    },
    "ProxySwitch-4": {
      "suggested_key": {
        "default": "Ctrl+Shift+4"
      },
      "description": "4"
    }
  },
  "options_ui": {
    "open_in_tab": true,
    "page": "setting.html"
  }
}