Go SHP Client

Chrome Extension for a go lang secure HTTP proxy.

Go SHP Client란 무엇입니까?

Go SHP Client은(는) https://wingu.se에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Chrome Extension for a go lang secure HTTP proxy."입니다.

확장 프로그램 스크린샷

screenshot

Go SHP Client 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 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 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",
        ""
    ]
}