Simple Proxy

Simple Proxy

This extension can set up proxy for each host you have visited.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "__MSG_name__",
  "description": "__MSG_description__",
  "version": "3.0",
  "browser_action": {
    "default_icon": "icon16.png",
    "default_popup": "popup.html",
    "default_title": "Proxy"
  },
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "icons": {
    "16": "icon16.png",
    "48": "icon48.png",
    "128": "icon128.png"
  },
  "default_locale": "en",
  "options_page": "options.html",
  "permissions": [
    "proxy",
    "tabs",
    "storage",
    "webRequest",
    "webNavigation",
    "http://*/*",
    "https://*/*"
  ]
}