function FindProxyForURL(url, host) {
const PROXY = "PROXY 192.168.10.166:10809"
const domains = [
'youtube.com',
'*.youtube.com',
'*.ytimg.com',
'google.com.*',
'google.com',
'*.google.com.*',
'*.google.com',
'*.googleusercontent.com',
'*.googlevideo.com',
'*.ggpht.com',
'*.googletagmanager.com',
'*.googleapis.com',
'*.googleblog.com',
'*.chrome.com',
'*.google',
'*.blogger.com',
'*.wikipedia.org',
'github.com',
'*.github.com',
'*.github.io',
'php.net',
'chatgpt.com',
'*.chatgpt.com',
'openai.com',
'*.openai.com',
'*.oaistatic.com',
'*.gravatar.com',
'*.auth0.com',
'element-plus.org',
'*.skylinewebcams.com',
'www.ventusky.com',
'cdn.jsdelivr.net',
'regex101.com',
'*.regex101.com',
'*.gstatic.com',
]
for(const v of domains){
if (shExpMatch(host, v)) {
return PROXY
}
}
}
登录后可发表评论
点击登录