@here Not sure how much my trick I can suggest is helpful for you guys but I think it’s worth to test new Mudfish Browser Extension for Chrome. When you get a chance, please follow the below steps, test and let me know whether it works for you.
Steps
1. Download new Mudfish Browser Extension for Chrome.
This is found at Index of /releases/ link and this link is a direct link. After downloading it, please unzip it first at any directory.
2. Uninstall the existing Mudfish extension and load new one.
Follow the steps to load the unpacked extension.
- Goto Chrome Settings using three dots on the top right corner.
- Then Select Extensions. Or you may directly open extensions using
chrome://extensions
URL.
- Now, enable developer mode
- Click on “Load Unpacked” button and select your Unzip folder. Note: You need to select the folder in which the manifest file exists.
- The extension will be installed now.
3. Opens “option” menu of Mudfish Browser Extension.
New option page looks like below.
Click “Advanced” tab. At “PAC” section, please change the body as follows. This rule is to add shExpMatch(url, "https://*.akamaized.net/*")
line not to proxy *.akamaized.net
domains.
function FindProxyForURL(url, host) {
host = host.toLowerCase();
if (isPlainHostName(host) ||
isInNetEx(host, "127.0.0.0/8") ||
isInNetEx(host, "10.0.0.0/8") ||
isInNetEx(host, "172.16.0.0/12") ||
isInNetEx(host, "192.168.0.0/16") ||
isInNetEx(host, "fc00::/7") ||
isInNetEx(host, "fe80::/10") ||
shExpMatch(url, "https://*.akamaized.net/*") ||
shExpMatch(url, "http://mudfish.net/*") ||
shExpMatch(url, "https://mudfish.net/*")) {
return "DIRECT";
}
return "{0}";
}
If this works for your game, the game assets (e.g. images, movies and scripts) provided by Akamai CDN will be accessed directly via the browser.
4. Turn on Mudfish extension, connects the game and test again.
It’s done. I hope it’s helpful a little bit for your gaming experience.