function FindProxyForURL(url, host) { // Normaliza host = host.toLowerCase(); // 🔁 Evita loop com o domínio do PAC if ( dnsDomainIs(host, "sunnori.com.br") || shExpMatch(host, "*.sunnori.com.br") ) { return "DIRECT"; } // 🎥 YouTube / Google Video → passa pelo túnel if ( dnsDomainIs(host, "googlevideo.com") || dnsDomainIs(host, "youtube.com") ) { return "PROXY 127.0.0.1:8080"; } // 🌐 Google APIs (ajuda o YouTube) if ( dnsDomainIs(host, "googleapis.com") ) { return "PROXY 127.0.0.1:8080"; } // 🚦 Todo o resto sai direto return "DIRECT"; }