Created
September 27, 2012 15:47
-
-
Save JoelQFernandez/3794736 to your computer and use it in GitHub Desktop.
Proxy Pac - BBC iPlayer
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Bypass BBC iPlayer Geo Blocking. | |
function FindProxyForURL(url, host) | |
{ | |
if (shExpMatch(url, "*.bbc.co.uk/iplayer*") | |
|| shExpMatch(url, "*.bbc.co.uk/mediaselector*") | |
|| shExpMatch(url, "*/locator*") ) | |
{ | |
return "PROXY 81.27.79.181:8080"; | |
} | |
else | |
{ | |
return "DIRECT"; | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment