Chrome Extension for a go lang secure HTTP proxy.
Premium users can view and search full source code, and see the source code differences
between two versions.
Upgrade to premium
manifest.json
{
"update_url": "https://clients2.google.com/service/update2/crx",
"manifest_version": 2,
"name": "Go SHP Client",
"description": "Chrome Extension for a go lang secure HTTP proxy.",
"version": "0.3.3",
"options_ui": {
"page": "options.html",
"chrome_style": true
},
"browser_action": {
"default_icon": "icon_off.png",
"default_popup": "popup.html"
},
"background": {
"scripts": [
"js/vendor.js",
"js/background.js"
]
},
"icons": {
"128": "icon.png"
},
"permissions": [
"webRequestBlocking",
"webRequest",
"proxy",
"storage",
"<all_urls>"
]
}