Go SHP Client

Chrome Extension for a go lang secure HTTP proxy.

Go SHP Client là gì?

Go SHP Client là một tiện ích mở rộng Chrome được phát triển bởi https://wingu.se, và tính năng chính của nó là "Chrome Extension for a go lang secure HTTP proxy.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng Go SHP Client

Tải xuống các tệp mở rộng Go SHP Client dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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!                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Go SHP Client Go SHP Client
ID pfmmmnmngonlnloejbdhnmknopgejmcn
URL Chính Thức https://chromewebstore.google.com/detail/go-shp-client/pfmmmnmngonlnloejbdhnmknopgejmcn
Mô tả Chrome Extension for a go lang secure HTTP proxy.
Kích Thước Tệp 241 KB
Số Lần Cài Đặt 18
Phiên Bản Hiện Tại 0.3.3
Cập Nhật Lần Cuối 2020-06-02
Ngày Phát Hành 2020-06-01
Nhà Phát Triển https://wingu.se
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/winguse/go-shp
URL Trang Trợ Giúp https://github.com/winguse/go-shp/issues
URL Trang Chính Sách Bảo Mật https://wingu.se/static/privacy-policy-shp-ext.txt
Ngôn Ngữ Được Hỗ Trợ 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",
        ""
    ]
}