switchyd

监听http和https请求. 当访问发生错误,并命中配置中的对应项目之后,会将访问的URL尝试加入到代理规则中并生成新的PAC脚本. 安装后默认使用SOCKS5 127.0.0.1:10086. HTTP/HTTPS选择PROXY.…

Cos'è switchyd?

switchyd è un'estensione di Chrome sviluppata da Zizon, e la sua funzione principale è "监听http和https请求. 当访问发生错误,并命中配置中的对应项目之后,会将访问的URL尝试加入到代理规则中并生成新的PAC脚本. 安装后默认使用SOCKS5 127.0.0.1:10086. HTTP/HTTPS选择PROXY.…".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione switchyd

Scarica i file di estensione switchyd in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        监听http和https请求.
当访问发生错误,并命中配置中的对应项目之后,会将访问的URL尝试加入到代理规则中并生成新的PAC脚本.

安装后默认使用SOCKS5 127.0.0.1:10086.
HTTP/HTTPS选择PROXY.
其余参见PAC脚本的对应规则.

如需调整,到chrome://extensions/ 下面找到此插件的选项,点击打开其设置页面.

代码在:https://github.com/zizon/switchyd

BSD 4 clause license
by @zizon.                    

Informazioni di Base sull'Estensione

Nome switchyd switchyd
ID hfcjdabkffcbefjghpicencaelebnnph
URL Ufficiale https://chromewebstore.google.com/detail/switchyd/hfcjdabkffcbefjghpicencaelebnnph
Descrizione 监听http和https请求. 当访问发生错误,并命中配置中的对应项目之后,会将访问的URL尝试加入到代理规则中并生成新的PAC脚本. 安装后默认使用SOCKS5 127.0.0.1:10086. HTTP/HTTPS选择PROXY.…
Dimensione del File 92.15 KB
Conteggio Installazioni 139
Versione Corrente 0.8.0.5
Ultimo Aggiornamento 2024-02-20
Data di Pubblicazione 2018-11-30
Valutazione 5.00/5 Totale 2 Valutazioni
Sviluppatore Zizon
Email [email protected]
Tipo di Pagamento free
Sito Web dell'Estensione https://github.com/zizon/switchyd
URL della Pagina di Aiuto https://github.com/zizon/switchyd
Lingue Supportate zh-CN
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "switchyd",
    "version": "0.8.0.5",
    "manifest_version": 3,
    "background": {
        "service_worker": "dist\/service-worker.js",
        "type": "module"
    },
    "permissions": [
        "storage",
        "proxy",
        "webRequest"
    ],
    "host_permissions": [
        "http:\/\/*\/*",
        "https:\/\/*\/*",
        "ws:\/\/*\/*",
        "wss:\/\/*\/*"
    ],
    "options_ui": {
        "page": "index.html",
        "open_in_tab": true
    },
    "icons": {
        "16": "resources\/switchyd16.png",
        "48": "resources\/switchyd48.png",
        "128": "resources\/switchyd128.png"
    }
}