Examine source code of BP Proxy Switcher

Inspect and view changes in BP Proxy Switcher 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": "BP Proxy Switcher",
  "description": "Change your proxies with one click",
  "version": "4.0.4",
  "browser_action": {
    "default_icon": "img/icon.png",
    "default_popup": "popup.html"
  },
  "icons": {
    "16": "img/icon.png",
    "48": "img/icon48.png",
    "128": "img/icon128.png"
  },
  "permissions": [
    "storage",
    "proxy",
    "privacy",
    "notifications",
    "webRequest",
    "webRequestBlocking",
    "<all_urls>",
    "tabs",
    "browsingData",
    "contextMenus"
  ],
  "background": {
    "scripts": [
      "background.js"
    ],
    "persistent": true
  },
  "incognito": "spanning",
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}