cagen / productivity

Boost up working productivity

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

FOR YOUR EYES ONLY

设置(未使用其他代理)

  1. clone 项目
  2. 根目录下npm install安装依赖
  3. 根目录下node index.js启动项目
  4. 在系统中加入pac文件地址,文件地址为:https://raw.githubusercontent.com/cagen/productivity/master/163.pac image image
  5. 点击确定,再点击应用
  6. Done!

Shadowsocks设置

  1. 同一般设置步骤1-3
  2. 在Shadowsocks的菜单里点编辑PAC来修改PAC文件
  3. 打开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;
}

About

Boost up working productivity


Languages

Language:JavaScript 100.0%