mirror of
https://github.com/privacy-protection-tools/anti-AD.git
synced 2025-01-23 06:49:25 +08:00
280b5ea460
一些升级,增加域名列表精简算法,修改域名匹配规则,黑名单机制优化
22 lines
606 B
PHP
22 lines
606 B
PHP
<?php
|
|
//white_domain_list
|
|
//白名单机制...
|
|
//@date 2018年12月23日
|
|
|
|
return array(
|
|
|
|
'cdn-thumb.fds.api.xiaomi.com' => true,
|
|
'.cdn-thumb.fds.api.xiaomi.com' => true,
|
|
'bce.baidu.com' => true,
|
|
'.bce.baidu.com' => true,
|
|
'b.bdstatic.com' => true,
|
|
'googleadapis.l.google.com' => true,
|
|
'.googleadapis.l.google.com' => true,
|
|
'gstaticadssl.l.google.com' => true,
|
|
'gvt1.com' => true,
|
|
'wangbase.com' => true,
|
|
'l.qq.com' => true, //解决腾讯视频无法播放
|
|
'g.csdnimg.cn' => true, //csdn阅读更多
|
|
'bce.baidu.com' => true, //csdn阅读更多
|
|
);
|