Using Skype Web through a proxy

Skype for Web is at
https://web.skype.com/

You can use this Auto-Proxy Configuration Script to use Skype.

function FindProxyForURL(url, host)
{

// variable strings to return
var chat_proxy = "PROXY chat.example.com:8080";
var proxy = "PROXY proxy.example.com:8080";
var no_proxy = "DIRECT";

// Skype Web hosts
if (shExpMatch(host, "*skype.com*")) { return chat_proxy; }
if (shExpMatch(host, "*live.com*")) { return chat_proxy; }
if (shExpMatch(host, "*.skypeassets.com*")) { return chat_proxy; }
if (shExpMatch(host, "*.trouter.io*")) { return chat_proxy; }
if (shExpMatch(host, "*.gfx.ms*")) { return chat_proxy; }

// My local network
if (shExpMatch(host, "*192.168.*")) { return no_proxy; }
if (shExpMatch(host, "*.example.com*")) { return no_proxy; }

// All others
else
{ return proxy; }

}

On Windows, save above script to a file at C:\proxy.pac

Open Control Panel > Internet Options > Connections > LAN settings > Use automatic configuration script > Address

file://C:/proxy.pac

Loading