Inspect and view changes in Proxy some 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 some",
"description": "Uses the proxy API to proxy requests to specific hosts.",
"version": "1.0",
"icons": {
"48": "icons/shield-purple.svg",
"96": "icons/shield-purple.svg"
},
"browser_specific_settings": {
"gecko": {
"id": "ngaluru@pm.me",
"strict_min_version": "91.1.0"
}
},
"background": {
"scripts": [
"background/proxy-handler.js"
]
},
"options_ui": {
"page": "options/options.html",
"browser_style": true
},
"permissions": [
"proxy",
"storage",
"<all_urls>"
]
}