├── .github └── ISSUE_TEMPLATE │ └── bug_report.md ├── Panel ├── Flush-DNS │ ├── Flush-DNS.sgmodule │ └── README.md ├── Netflix-IP-Test │ ├── Netflix-IP-Test.sgmodule │ ├── netflixCheck.js │ └── readme.md ├── Network-Info │ ├── Network-Info-Test.sgmodule │ ├── Network-Info.sgmodule │ ├── README.md │ ├── READMEs │ │ ├── README.cn.md │ │ └── README.en.md │ ├── cn │ │ ├── Network-Info-Test_CN.sgmodule │ │ ├── Network-Info_CN.sgmodule │ │ ├── net-info-panel_CN.js │ │ └── test.js │ ├── img │ │ ├── cell.JPG │ │ ├── error.JPG │ │ └── wifi.JPG │ └── net-info-panel.js ├── Profile-Reload │ ├── Profile-Reload.sgmodule │ └── reload.js ├── Sub-Info │ └── subInfo.js ├── Surge-Pro │ ├── Surge-Pro.sgmodule │ └── licensesCheck.js └── YouTube-Premium-Test │ ├── YouTube-Premium-Test.sgmodule │ └── premiumCheck.js ├── README.md └── Script ├── fancy-characters.js └── readme.md /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nebulosa-Cat/Surge/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /Panel/Flush-DNS/Flush-DNS.sgmodule: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nebulosa-Cat/Surge/HEAD/Panel/Flush-DNS/Flush-DNS.sgmodule -------------------------------------------------------------------------------- /Panel/Flush-DNS/README.md: -------------------------------------------------------------------------------- 1 | # 代碼源自 zZPiglet ,僅進行繁體化 2 | -------------------------------------------------------------------------------- /Panel/Netflix-IP-Test/Netflix-IP-Test.sgmodule: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nebulosa-Cat/Surge/HEAD/Panel/Netflix-IP-Test/Netflix-IP-Test.sgmodule -------------------------------------------------------------------------------- /Panel/Netflix-IP-Test/netflixCheck.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nebulosa-Cat/Surge/HEAD/Panel/Netflix-IP-Test/netflixCheck.js -------------------------------------------------------------------------------- /Panel/Netflix-IP-Test/readme.md: -------------------------------------------------------------------------------- 1 | # 版權聲明 2 | ## 原始代碼取自 Hyseen 大佬的模組,僅進行繁體化並使用於個人使用 -------------------------------------------------------------------------------- /Panel/Network-Info/Network-Info-Test.sgmodule: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nebulosa-Cat/Surge/HEAD/Panel/Network-Info/Network-Info-Test.sgmodule -------------------------------------------------------------------------------- /Panel/Network-Info/Network-Info.sgmodule: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nebulosa-Cat/Surge/HEAD/Panel/Network-Info/Network-Info.sgmodule -------------------------------------------------------------------------------- /Panel/Network-Info/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nebulosa-Cat/Surge/HEAD/Panel/Network-Info/README.md -------------------------------------------------------------------------------- /Panel/Network-Info/READMEs/README.cn.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nebulosa-Cat/Surge/HEAD/Panel/Network-Info/READMEs/README.cn.md -------------------------------------------------------------------------------- /Panel/Network-Info/READMEs/README.en.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nebulosa-Cat/Surge/HEAD/Panel/Network-Info/READMEs/README.en.md -------------------------------------------------------------------------------- /Panel/Network-Info/cn/Network-Info-Test_CN.sgmodule: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nebulosa-Cat/Surge/HEAD/Panel/Network-Info/cn/Network-Info-Test_CN.sgmodule -------------------------------------------------------------------------------- /Panel/Network-Info/cn/Network-Info_CN.sgmodule: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nebulosa-Cat/Surge/HEAD/Panel/Network-Info/cn/Network-Info_CN.sgmodule -------------------------------------------------------------------------------- /Panel/Network-Info/cn/net-info-panel_CN.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nebulosa-Cat/Surge/HEAD/Panel/Network-Info/cn/net-info-panel_CN.js -------------------------------------------------------------------------------- /Panel/Network-Info/cn/test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nebulosa-Cat/Surge/HEAD/Panel/Network-Info/cn/test.js -------------------------------------------------------------------------------- /Panel/Network-Info/img/cell.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nebulosa-Cat/Surge/HEAD/Panel/Network-Info/img/cell.JPG -------------------------------------------------------------------------------- /Panel/Network-Info/img/error.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nebulosa-Cat/Surge/HEAD/Panel/Network-Info/img/error.JPG -------------------------------------------------------------------------------- /Panel/Network-Info/img/wifi.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nebulosa-Cat/Surge/HEAD/Panel/Network-Info/img/wifi.JPG -------------------------------------------------------------------------------- /Panel/Network-Info/net-info-panel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nebulosa-Cat/Surge/HEAD/Panel/Network-Info/net-info-panel.js -------------------------------------------------------------------------------- /Panel/Profile-Reload/Profile-Reload.sgmodule: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nebulosa-Cat/Surge/HEAD/Panel/Profile-Reload/Profile-Reload.sgmodule -------------------------------------------------------------------------------- /Panel/Profile-Reload/reload.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nebulosa-Cat/Surge/HEAD/Panel/Profile-Reload/reload.js -------------------------------------------------------------------------------- /Panel/Sub-Info/subInfo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nebulosa-Cat/Surge/HEAD/Panel/Sub-Info/subInfo.js -------------------------------------------------------------------------------- /Panel/Surge-Pro/Surge-Pro.sgmodule: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nebulosa-Cat/Surge/HEAD/Panel/Surge-Pro/Surge-Pro.sgmodule -------------------------------------------------------------------------------- /Panel/Surge-Pro/licensesCheck.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nebulosa-Cat/Surge/HEAD/Panel/Surge-Pro/licensesCheck.js -------------------------------------------------------------------------------- /Panel/YouTube-Premium-Test/YouTube-Premium-Test.sgmodule: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nebulosa-Cat/Surge/HEAD/Panel/YouTube-Premium-Test/YouTube-Premium-Test.sgmodule -------------------------------------------------------------------------------- /Panel/YouTube-Premium-Test/premiumCheck.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nebulosa-Cat/Surge/HEAD/Panel/YouTube-Premium-Test/premiumCheck.js -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Surge 2 | 自用修改版腳本 3 | -------------------------------------------------------------------------------- /Script/fancy-characters.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nebulosa-Cat/Surge/HEAD/Script/fancy-characters.js -------------------------------------------------------------------------------- /Script/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nebulosa-Cat/Surge/HEAD/Script/readme.md --------------------------------------------------------------------------------