新版V2rayN如何设置PAC模式?



新版v2rayN在更新之后没有了pac模式,默认只有全局模式,那么如何找回原来的pac模式呢?

视频教学链接


geo开头的两个文件下载地址https://github.com/Loyalsoldier/v2ray-rules-dat

PAC模式/GFW 模式,不带广告屏蔽:

[
  {
     "outboundTag": "proxy",
     "ip": [
       "geoip:telegram"
     ],
     "domain": [
       "geosite:gfw"
    ]
  },
  {
    "port": "0-65535",
    "outboundTag": "direct"
  }
]

PAC模式/GFW 模式,带广告屏蔽的:

[
  {
    "outboundTag": "block",
    "domain": [
      "geosite:category-ads-all",
    ]
  },
  {
     "outboundTag": "proxy",
     "ip": [
       "geoip:telegram"
     ],
     "domain": [
       "geosite:gfw"
    ]
  },
  {
    "port": "0-65535",
    "outboundTag": "direct"
  }
]