starnight (@ghost2) 在 分享一下自己clash verge 使用的全局扩展脚本 中发帖
优点:
1、会自动切换最优节点,自己的mac mini 上测试开启代理好几天都没有断开链接
2、在原版的基础上简化了一些东西代理组,使用起来更加简单
如果有自己自定义添加的规则,放到ruleProviders的custom 里
自己修改后的:
/***
* Clash Verge Rev / Mihomo Party 优化脚本
* 原作者: dahaha-365 (YaNet)
* Github:https://github.com/dahaha-365/YaNet
*/
function stringToArray(val) {
if (Array.isArray(val)) return val;
if (typeof val !== "string") return [];
return val
.split(";")
.map((it...