在浏览器的代理中创建视频流异常

在浏览器的代理中创建视频流异常

我正在尝试让 Firefox 在加载互联网视频时绕过代理。将域名添加到“无代理”字段并使用以下 PAC 文件都无济于事——它仍然无法直接下载视频。你认为我在这里做错了什么?

function FindProxyForURL(url, host) {
  if (isPlainHostName(host) ||
     dnsDomainIs(host, ".youtube.com") ||
     dnsDomainIs(host, "youtube.com") ||
     dnsDomainIs(host, ".twitch.tv") ||
     dnsDomainIs(host, "twitch.tv")) {
       return "DIRECT";
  } else {
    return "SOCKS5 localhost:4711";
  }
}

相关内容