Proxy Manager is a Firefox extension that lets users add, manage, and toggle multiple proxy settings easily. With a user-friendly interface, it ensures seamless switching and persistent storage of proxy configurations.
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": "Proxy Manager",
"version": "2.0",
"description": "Manage multiple proxies and toggle between them",
"permissions": [
"proxy",
"storage",
"activeTab",
"tabs"
],
"background": {
"scripts": [
"background.js"
],
"persistent": false
},
"browser_action": {
"default_popup": "popup.html",
"default_icon": {
"16": "icons/icon-disabled-48.png"
}
},
"icons": {
"16": "icons/icon-disabled-48.png"
},
"browser_specific_settings": {
"gecko": {
"strict_min_version": "91.1.0",
"id": "{aec8697d-d5ad-4227-859d-45f31562d213}"
}
}
}