Inspect and view changes in Proxy Toggle Extension 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": "Proxy Toggle Extension",
"version": "1.21",
"description": "Enable or disable proxy easily.",
"permissions": [
"storage",
"proxy",
"tabs",
"webNavigation",
"webRequest",
"webRequestBlocking",
"<all_urls>",
"browsingData"
],
"background": {
"scripts": [
"background.js"
],
"persistent": true
},
"content_scripts": [
{
"matches": [
"<all_urls>"
],
"js": [
"contentScript.js"
],
"run_at": "document_start"
}
],
"browser_action": {
"default_title": "Proxy Toggle",
"default_icon": {
"48": "icon48.png",
"128": "icon128.png"
}
},
"web_accessible_resources": [
"userscript-obf.js"
],
"applications": {
"gecko": {
"id": "proxy-toggle@example.com",
"strict_min_version": "91.1.0"
}
}
}