You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

28 lines
547 B

9 years ago
// https://pac.mcplay.cn
9 years ago
8 years ago
var proxy = "PROXY zrjvdiumpqsygrrh.tianti.io:25;";
9 years ago
var domains = {
8 years ago
"localhost": 1
9 years ago
};
var direct = 'DIRECT;';
var hasOwnProperty = Object.hasOwnProperty;
function FindProxyForURL(url, host) {
var suffix;
var pos = host.lastIndexOf('.');
while(1) {
suffix = host.substring(pos + 1);
if (hasOwnProperty.call(domains, suffix)) {
return proxy;
}
if (pos <= 0) {
break;
}
pos = host.lastIndexOf('.', pos - 1);
}
8 years ago
return proxy;
9 years ago
}