switchyd

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

Qu'est-ce que switchyd ?

switchyd est une extension Chrome développée par Zizon, et sa fonction principale est "监听http和https请求. 当访问发生错误,并命中配置中的对应项目之后,会将访问的URL尝试加入到代理规则中并生成新的PAC脚本. 安装后默认使用SOCKS5 127.0.0.1:10086. HTTP/HTTPS选择PROXY.…".

Captures d'Écran de l'Extension

screenshot

Télécharger le fichier CRX de l'extension switchyd

Téléchargez les fichiers d'extension switchyd au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        监听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.                    

Informations de Base sur l'Extension

Nom switchyd switchyd
ID hfcjdabkffcbefjghpicencaelebnnph
URL Officiel https://chromewebstore.google.com/detail/switchyd/hfcjdabkffcbefjghpicencaelebnnph
Description 监听http和https请求. 当访问发生错误,并命中配置中的对应项目之后,会将访问的URL尝试加入到代理规则中并生成新的PAC脚本. 安装后默认使用SOCKS5 127.0.0.1:10086. HTTP/HTTPS选择PROXY.…
Taille du Fichier 92.15 KB
Nombre d'Installations 139
Version Actuelle 0.8.0.5
Dernière Mise à Jour 2024-02-20
Date de Publication 2018-11-30
Évaluation 5.00/5 Total 2 Évaluations
Développeur Zizon
Email [email protected]
Type de Paiement free
Site Web de l'Extension https://github.com/zizon/switchyd
URL de la Page d'Aide https://github.com/zizon/switchyd
Langues Prises en Charge 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"
    }
}