FOR YOUR EYES ONLY
设置(未使用其他代理)
- clone 项目
- 根目录下
npm install
安装依赖 - 根目录下
node index.js
启动项目 - 在系统中加入pac文件地址,文件地址为:
https://raw.githubusercontent.com/cagen/productivity/master/163.pac
- 点击确定,再点击应用
- Done!
Shadowsocks设置
- 同一般设置步骤1-3
- 在Shadowsocks的菜单里点编辑PAC来修改PAC文件
- 打开
gfwlist.js
,修改最后一个函数FindProxyForURL
function FindProxyForURL(url, host) {
if (defaultMatcher.matchesAny(url, host) instanceof BlockingFilter) {
return proxy;
}
return direct;
}
改为
function FindProxyForURL(url, host) {
var musicHost = "m*.music.126.net";
if(shExpMatch(host,musicHost)){
return "proxy localhost:4163"
}
if (defaultMatcher.matchesAny(url, host) instanceof BlockingFilter) {
return proxy;
}
return direct;
}