Programmatically Proxy Switcher

Programmatically Proxy Switcher

This extension helps developers to change their proxy in Chrome using a simple JavaScript programming code. To using this…

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Programmatically Proxy Switcher",
  "version": "1.0.0",
  "options_page": "options.html",
  "options_ui": {
    "chrome_style": true,
    "open_in_tab": true,
    "page": "options.html"
  },
  "browser_action": {
    "default_title": "Simple Proxy Switcher for Developers",
    "default_popup": "options.html"
  },
  "permissions": [
    "tabs",
    "proxy",
    "storage",
    "webRequest",
    "activeTab"
  ],
  "background": {
    "persistent": true,
    "scripts": [
      "js/background.js"
    ]
  },
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "js": [
        "js/content.js"
      ],
      "all_frames": true,
      "run_at": "document_idle"
    }
  ]
}