Examine source code of EasyProxy

Inspect and view changes in EasyProxy source codes across current and past versions
Premium users can view and search full source code, and see the source code differences between two versions.
Upgrade to premium
manifest.json
{
  "manifest_version": 2,
  "name": "EasyProxy",
  "version": "4.0",
  "description": "Simple proxy switcher. Tab proxy support.",
  "icons": {
    "48": "img/48.png",
    "96": "img/96.png"
  },
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "permissions": [
    "proxy",
    "storage",
    "tabs",
    "<all_urls>",
    "webRequest",
    "webRequestBlocking"
  ],
  "browser_action": {
    "default_icon": "img/off-32.png",
    "default_title": "EasyProxy",
    "default_popup": "popup/index.html"
  },
  "browser_specific_settings": {
    "gecko": {
      "id": "easyproxy@martini-drinker",
      "strict_min_version": "91.1.0"
    },
    "gecko_android": {}
  }
}