├── .github └── workflows │ ├── reusable-mihomo-update.yml │ ├── update_mihomo_all.yml │ ├── update_mihomo_config.yml │ └── update_mihomo_script.yml ├── .gitignore ├── Mihomo ├── Extension_Script │ ├── README.md │ └── script.js ├── README.md ├── auto_update_config │ ├── auto_update_js.py │ └── auto_update_yaml.py ├── mihomo_multi.yaml └── mihomo_single.yaml ├── README.md ├── Sing-Box ├── README.md ├── images │ ├── image-1.png │ └── image.png ├── singbox.json ├── singbox_realip_myrule.json ├── singbox_realip_myrule_subscribe.json └── tp.js ├── Surge ├── README.md ├── Surge-Mac.conf └── Surge-iOS.conf ├── pdm.lock └── pyproject.toml /.github/workflows/reusable-mihomo-update.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyhhyyyyyy/selfproxy/HEAD/.github/workflows/reusable-mihomo-update.yml -------------------------------------------------------------------------------- /.github/workflows/update_mihomo_all.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyhhyyyyyy/selfproxy/HEAD/.github/workflows/update_mihomo_all.yml -------------------------------------------------------------------------------- /.github/workflows/update_mihomo_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyhhyyyyyy/selfproxy/HEAD/.github/workflows/update_mihomo_config.yml -------------------------------------------------------------------------------- /.github/workflows/update_mihomo_script.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyhhyyyyyy/selfproxy/HEAD/.github/workflows/update_mihomo_script.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | .pdm-python 3 | .venv/ 4 | __pycache__/ -------------------------------------------------------------------------------- /Mihomo/Extension_Script/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyhhyyyyyy/selfproxy/HEAD/Mihomo/Extension_Script/README.md -------------------------------------------------------------------------------- /Mihomo/Extension_Script/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyhhyyyyyy/selfproxy/HEAD/Mihomo/Extension_Script/script.js -------------------------------------------------------------------------------- /Mihomo/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyhhyyyyyy/selfproxy/HEAD/Mihomo/README.md -------------------------------------------------------------------------------- /Mihomo/auto_update_config/auto_update_js.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyhhyyyyyy/selfproxy/HEAD/Mihomo/auto_update_config/auto_update_js.py -------------------------------------------------------------------------------- /Mihomo/auto_update_config/auto_update_yaml.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyhhyyyyyy/selfproxy/HEAD/Mihomo/auto_update_config/auto_update_yaml.py -------------------------------------------------------------------------------- /Mihomo/mihomo_multi.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyhhyyyyyy/selfproxy/HEAD/Mihomo/mihomo_multi.yaml -------------------------------------------------------------------------------- /Mihomo/mihomo_single.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyhhyyyyyy/selfproxy/HEAD/Mihomo/mihomo_single.yaml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyhhyyyyyy/selfproxy/HEAD/README.md -------------------------------------------------------------------------------- /Sing-Box/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyhhyyyyyy/selfproxy/HEAD/Sing-Box/README.md -------------------------------------------------------------------------------- /Sing-Box/images/image-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyhhyyyyyy/selfproxy/HEAD/Sing-Box/images/image-1.png -------------------------------------------------------------------------------- /Sing-Box/images/image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyhhyyyyyy/selfproxy/HEAD/Sing-Box/images/image.png -------------------------------------------------------------------------------- /Sing-Box/singbox.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyhhyyyyyy/selfproxy/HEAD/Sing-Box/singbox.json -------------------------------------------------------------------------------- /Sing-Box/singbox_realip_myrule.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyhhyyyyyy/selfproxy/HEAD/Sing-Box/singbox_realip_myrule.json -------------------------------------------------------------------------------- /Sing-Box/singbox_realip_myrule_subscribe.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyhhyyyyyy/selfproxy/HEAD/Sing-Box/singbox_realip_myrule_subscribe.json -------------------------------------------------------------------------------- /Sing-Box/tp.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyhhyyyyyy/selfproxy/HEAD/Sing-Box/tp.js -------------------------------------------------------------------------------- /Surge/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyhhyyyyyy/selfproxy/HEAD/Surge/README.md -------------------------------------------------------------------------------- /Surge/Surge-Mac.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyhhyyyyyy/selfproxy/HEAD/Surge/Surge-Mac.conf -------------------------------------------------------------------------------- /Surge/Surge-iOS.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyhhyyyyyy/selfproxy/HEAD/Surge/Surge-iOS.conf -------------------------------------------------------------------------------- /pdm.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyhhyyyyyy/selfproxy/HEAD/pdm.lock -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyhhyyyyyy/selfproxy/HEAD/pyproject.toml --------------------------------------------------------------------------------