Go SHP Client
Chrome Extension for a go lang secure HTTP proxy.
Go SHP Client क्या है?
Go SHP Client https://wingu.se द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Chrome Extension for a go lang secure HTTP proxy."।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Go SHP Client एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
This is the extension for go-shp (https://github.com/winguse/go-shp). A open source secure HTTP proxy written in golang. This extension also works for Caddy Server as "Probe resistant Reverse Proxy": https://caddyserver.com/v1/docs/http.forwardproxy The source code can be found in https://github.com/winguse/go-shp/tree/master/chrome-extension . This extension include features: 1. set proxy on / off for Chrome 2. rule base proxy selection 3. latency test to select proxy server Project go-shp is aiming to provide a proxy server looks like a normal website to avoid proxy detection. By avoid proxy detection, we can get rid of the Internet censorship in country like China mainland. So the proxy server will not actively ask for proxy authentication unless a special URL is being requested. To allow Chrome to provide the credential to authenticate the proxy server, this extension requires the permission of: - webRequestBlocking - webRequest - proxy The secure HTTP proxy requires proxy authentication and this is done by `chrome.webRequest.onAuthRequired`. Please check https://github.com/winguse/go-shp/blob/master/chrome-extension/src/background.ts#L74-L94 for more infomation. As a client of go-shp, it can be deployed by different people and they will have different domains, so webRequest is required to have permission of: -If you feel unconformable about the permission, you can check the source code to reason about the above requirements here: https://github.com/winguse/go-shp . If you have better ideas than this, please let me know. Thank you!
एक्सटेंशन की मूल जानकारी
नाम | Go SHP Client |
ID | pfmmmnmngonlnloejbdhnmknopgejmcn |
आधिकारिक URL | https://chromewebstore.google.com/detail/go-shp-client/pfmmmnmngonlnloejbdhnmknopgejmcn |
विवरण | Chrome Extension for a go lang secure HTTP proxy. |
फ़ाइल का आकार | 241 KB |
स्थापना संख्या | 18 |
वर्तमान संस्करण | 0.3.3 |
अंतिम अपडेट | 2020-06-02 |
प्रकाशन तिथि | 2020-06-01 |
डेवलपर | https://wingu.se |
ईमेल | [email protected] |
भुगतान के प्रकार | free |
एक्सटेंशन वेबसाइट | https://github.com/winguse/go-shp |
सहायता पृष्ठ URL | https://github.com/winguse/go-shp/issues |
गोपनीयता नीति पृष्ठ URL | https://wingu.se/static/privacy-policy-shp-ext.txt |
समर्थित भाषाएँ | en |
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", " |