Created
September 27, 2012 17:45
-
-
Save JoelQFernandez/3795354 to your computer and use it in GitHub Desktop.
Proxy Pac - CBC Player
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 CBC Player Geo Blocking. | |
function FindProxyForURL(url, host) | |
{ | |
if (shExpMatch(url, "*.cbc.ca/video/js/SWFVideoPlayer.js") | |
|| shExpMatch(url, "*.theplatform.com/f/h9dtGB/*")) | |
{ | |
return "PROXY 142.4.192.39:8080"; | |
} | |
else | |
{ | |
return "DIRECT"; | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment