未名Q

此生若能得幸福安稳,谁又愿颠沛流离。

  :: 首页 :: 博问 :: 闪存 :: 新随笔 :: :: 订阅 订阅 :: 管理 ::
function FindProxyForURL(url, host) {
    if ( dnsDomainIs(host,"google.com") || dnsDomainIs(host,"gstatic.com") || dnsDomainIs(host,"googleapis.com")
      || dnsDomainIs(host,"github.com")
      || dnsDomainIs(host,"x.com") || dnsDomainIs(host,"twitter.com") || dnsDomainIs(host,"twimg.com")
      || dnsDomainIs(host,"wikipedia.com") || dnsDomainIs(host,"wikipedia.org")
    ) {
      return "SOCKS5 127.0.0.1:1080";
    }
    return "DIRECT"; 
} 

/* 
如果OS或浏览器,不支持pac里有注释,请删除此区域内容。
代理自动配置(PAC)文件:https://developer.mozilla.org/zh-CN/docs/Web/HTTP/Proxy_servers_and_tunneling/Proxy_Auto-Configuration_PAC_file
JavaScript 教程:https://www.runoob.com/js/js-tutorial.html

MIME 类型: application/x-ns-proxy-autoconfig

1、js 逻辑运算符
示例 x=6 以及 y=3
&& 为and,(x < 10 && y > 1) 为 true
|| 为or,(x==5 || y==5) 为 false
!  为not,!(x==y) 为 true

2、js if语句,else子句是可选,if是可以嵌套。
if (条件)
{
    当条件为 true 时执行的代码
}
else
{
    当条件不为 true 时执行的代码
}

3、js return 退出函数
执行结束,不再向执行后面的代码。

10、function FindProxyForURL(url, host) {}
示例 https://developer.mozilla.org:80/zh-CN/
url为developer.mozilla.org:80/zh-CN/,注意在Chrome中,不包含<https:/>,但包含<http:/>。
host为developer.mozilla.org,为url中主机名,不包含端口号。

11、dnsDomainIs(host, domain)
domain在host中匹配成功,返回 true。
dnsDomainIs("www.mozilla.org", ".mozilla.org"); // true
dnsDomainIs("www", ".mozilla.org"); // false

12、代理配置
直连            DIRECT
http 代理    PROXY host:port
SOCKS 代理    SOCKS[4|5] host:port
多个代理,如果PROXY主代理出现问题,则使用SOCKS代理连接:
            PROXY w3proxy.netscape.com:8080; SOCKS socks:1080

如果 return "xxx"; 语句多或代理服务器多,可以使用变量。
在 function FindProxyForURL(url, host) {} 的{}中第一行,定义代理服务器,比如:
var proxy1 = "PROXY host:port"
则在 return proxy1;

20、shExpMatch(str, shexp)  //firefox无效果
str为任何要比较的字符串,shexp 要用来对比的 Shell glob表达式,而非正则表达式。
示例1:shExpMatch(host,"x.com")
host为www.x.com或x.com,返回 true
host为z.cn,返回 false
示例2:shExpMatch(host,"img.x.com")
host为www.x.com或x.com,返回 false
*/

 

posted on 2024-09-12 07:04  未名Q  阅读(21)  评论(0编辑  收藏  举报