├── .gitignore ├── CNAME ├── README.md ├── rules.txt └── safebrowsing-domains.txt /.gitignore: -------------------------------------------------------------------------------- 1 | 2 | # Created by https://www.gitignore.io/api/mac 3 | 4 | #!! ERROR: mac is undefined. Use list command to see defined gitignore types !!# 5 | 6 | 7 | # End of https://www.gitignore.io/api/mac 8 | -------------------------------------------------------------------------------- /CNAME: -------------------------------------------------------------------------------- 1 | abp.tt.codes -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | 订阅地址: https://abp.tt.codes/rules.txt 2 | -------------------------------------------------------------------------------- /rules.txt: -------------------------------------------------------------------------------- 1 | [Adblock Plus 2.0] 2 | ! Title: whtsky's rules 3 | ! Homepage: https://github.com/whtsky/abp-rules 4 | ! Expires: 1 days 5 | 6 | common/analytics.js$script 7 | 8 | ! tsdm 9 | ! medals 10 | ||www.aqours.love/img01/medal/ 11 | ! groups 12 | ||www.tsdmw.net/img01/grouplogo/ 13 | tsdm.me##.tsdm_statbar.tsdm_pokemon 14 | tsdm.me##.tsdm_ship 15 | tsdm.me##.tsdm_ship_box 16 | tsdm.me###ts_weibo_wrapper 17 | tsdm.me###ts_sidebar_base 18 | ||tsdm.me/weibo.html 19 | tsdm.me###ts_sidebar_base 20 | 21 | ! pt 22 | ###ad_belownav 23 | 24 | ! 价值观 25 | ||tracert.alipay.com 26 | ||retcode.taobao.com/r.png 27 | ||retcode.alicdn.com/retcode 28 | ||ur.alipay.com/tracert_*$script 29 | 30 | ||googletagmanager.com/gtag/js 31 | 32 | ! baidu 33 | ||hm.baidu.com 34 | ||api.share.baidu.com/getnum 35 | ||share.baidu.com/static/api/js/ 36 | ||zz.bdstatic.com/linksubmit/push.js 37 | ||push.zhanzhang.baidu.com/push.js 38 | ||exp.bdstatic.com/static/article/lib/share/logger 39 | ||jingyan.baidu.com/asyncreq/log 40 | ||fex.bdstatic.com/hunter/alog 41 | ||bdimg.share.baidu.com/static/js/ 42 | 43 | !g-cores 44 | ||g-cores.com/originals/hit 45 | 46 | !360 47 | ||js.passport.qihucdn.com 48 | ||jspassport.ssl.qhimg.com 49 | 50 | !Tencent 51 | ||pingtas.qq.com 52 | ||pingfore.qq.com 53 | ||tajs.qq.com 54 | ||pingjs.qq.com 55 | ||qq.com/cgi-bin/report 56 | ||mta.qq.com/mta/resource/scripts/mta.tajs 57 | ||pub.idqqimg.com/pc/misc/sentry/ 58 | ||prom.b.qq.com 59 | ||report.b.qq.com 60 | 61 | !v2ex 62 | ||v2ex.com/b/i/ 63 | 64 | !wp-share-list 65 | ###wp-share-list-container 66 | 67 | !pc6 68 | ||pc6.com/statistics.php 69 | ||pc6.com/static/api/js/share 70 | ||pc6.com/static/api/js/view/share_view.js 71 | ||pc6.com/static/api/js/trans/ 72 | ||pc6.com/static/api/js/component/partners.js 73 | ||pc6.com/public/images/share.jpg 74 | ||tongji.pc6.com 75 | ||www.pc6.com###xyx 76 | 77 | !3dm 78 | ||statistics.3dmgame.com 79 | 80 | !yahoo 81 | ||full-ruler.secure.yahoo.com/js/pixie.js 82 | 83 | !闲鱼上让你下 App 的广告 84 | ||2.taobao.com##.xy-guide 85 | 86 | !凤凰游戏 87 | ||fhyx.com/api/shop_big.js 88 | 89 | !gamersky 90 | ||ja1.gamersky.com 91 | ||ja2.gamersky.com 92 | 93 | !duowan 94 | ||duowan.com/s/statistics.js 95 | 96 | !busuanzi - site pv tracking 97 | !https://busuanzi.ibruce.info/ 98 | ||busuanzi.ibruce.info 99 | 100 | !https://github.com/SukkaW/cloudflare-workers-async-google-analytics 101 | ||cdn.jsdelivr.net/npm/cfga@*$script 102 | !blog.skk.moe 103 | ||cdn.jsdelivr.net/npm/skx@*$script 104 | ||blog.skk.moe/optical 105 | 106 | !zhihu 107 | ||www.zhihu.com/sc-profiler 108 | ||unpkg.zhimg.com/@cfe/sentry-script@*$script 109 | 110 | !pingwest 111 | ||cdn.pingwest.com/lib/raven.min.js 112 | 113 | ||albatross.10086.cn^ 114 | 115 | !baidu 116 | ||fclog.baidu.com 117 | -------------------------------------------------------------------------------- /safebrowsing-domains.txt: -------------------------------------------------------------------------------- 1 | safebrowsing.urlsec.qq.com 2 | safebrowsing.google.com 3 | safebrowsing.googleapis.com --------------------------------------------------------------------------------