├── .github └── workflows │ └── main.yml ├── .gitignore ├── LICENSE ├── README.md ├── factory ├── PropFileRW.py ├── README.md ├── ad.py ├── auto_build.sh ├── build_confs.py ├── gfwlist.py ├── index.sh.bat ├── manual │ ├── manual_direct.txt │ ├── manual_gfwlist.txt │ ├── manual_proxy.txt │ └── manual_reject.txt ├── requirements.txt ├── resultant │ ├── ad.list │ ├── gfw.list │ ├── gfw_unhandle.log │ ├── repo_status.prop │ ├── top500_direct.list │ └── top500_proxy.list └── template │ ├── README_template.txt │ ├── sr_banlist.txt │ ├── sr_banlist_ad.txt │ ├── sr_banlist_ad_manual.txt │ ├── sr_banlist_manual.txt │ ├── sr_foot.txt │ └── sr_head.txt ├── h2y_bak ├── .gitignore ├── LICENSE ├── factory │ ├── README.md │ ├── ad.py │ ├── auto_build.sh │ ├── build_confs.py │ ├── chnroutes.py │ ├── gfwlist.py │ ├── index.sh.bat │ ├── manual_direct.txt │ ├── manual_gfwlist.txt │ ├── manual_proxy.txt │ ├── manual_reject.txt │ ├── resultant │ │ ├── ad.list │ │ ├── gfw.list │ │ ├── gfw_unhandle.log │ │ ├── top500_direct.list │ │ └── top500_proxy.list │ ├── template │ │ ├── sr_adb.txt │ │ ├── sr_backcn.txt │ │ ├── sr_backcn_ad.txt │ │ ├── sr_cnip.txt │ │ ├── sr_cnip_ad.txt │ │ ├── sr_direct_banad.txt │ │ ├── sr_foot.txt │ │ ├── sr_head.txt │ │ ├── sr_proxy_banad.txt │ │ ├── sr_top500_banlist.txt │ │ ├── sr_top500_banlist_ad.txt │ │ ├── sr_top500_whitelist.txt │ │ └── sr_top500_whitelist_ad.txt │ └── top500.py ├── figure │ ├── guide.png │ ├── guide.xmind │ ├── sr_backcn.png │ ├── sr_backcn_ad.png │ ├── sr_cnip.png │ ├── sr_cnip_ad.png │ ├── sr_direct_banad.png │ ├── sr_proxy_banad.png │ ├── sr_top500_banlist.png │ ├── sr_top500_banlist_ad.png │ ├── sr_top500_whitelist.png │ ├── sr_top500_whitelist_ad.png │ └── 免费在线二维码生成器.url ├── readme.md ├── requirements.txt ├── sr_adb.conf ├── sr_backcn.conf ├── sr_backcn_ad.conf ├── sr_cnip.conf ├── sr_cnip_ad.conf ├── sr_direct_banad.conf ├── sr_proxy_banad.conf ├── sr_top500_banlist.conf ├── sr_top500_banlist_ad.conf ├── sr_top500_whitelist.conf └── sr_top500_whitelist_ad.conf ├── sr_banlist.conf ├── sr_banlist_ad.conf ├── sr_banlist_ad_manual.conf └── sr_banlist_manual.conf /.github/workflows/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nthack/Shadowrocket-ADBlock-Rules-Easy/HEAD/.github/workflows/main.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nthack/Shadowrocket-ADBlock-Rules-Easy/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nthack/Shadowrocket-ADBlock-Rules-Easy/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nthack/Shadowrocket-ADBlock-Rules-Easy/HEAD/README.md -------------------------------------------------------------------------------- /factory/PropFileRW.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nthack/Shadowrocket-ADBlock-Rules-Easy/HEAD/factory/PropFileRW.py -------------------------------------------------------------------------------- /factory/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nthack/Shadowrocket-ADBlock-Rules-Easy/HEAD/factory/README.md -------------------------------------------------------------------------------- /factory/ad.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nthack/Shadowrocket-ADBlock-Rules-Easy/HEAD/factory/ad.py -------------------------------------------------------------------------------- /factory/auto_build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nthack/Shadowrocket-ADBlock-Rules-Easy/HEAD/factory/auto_build.sh -------------------------------------------------------------------------------- /factory/build_confs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nthack/Shadowrocket-ADBlock-Rules-Easy/HEAD/factory/build_confs.py -------------------------------------------------------------------------------- /factory/gfwlist.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nthack/Shadowrocket-ADBlock-Rules-Easy/HEAD/factory/gfwlist.py -------------------------------------------------------------------------------- /factory/index.sh.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nthack/Shadowrocket-ADBlock-Rules-Easy/HEAD/factory/index.sh.bat -------------------------------------------------------------------------------- /factory/manual/manual_direct.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nthack/Shadowrocket-ADBlock-Rules-Easy/HEAD/factory/manual/manual_direct.txt -------------------------------------------------------------------------------- /factory/manual/manual_gfwlist.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nthack/Shadowrocket-ADBlock-Rules-Easy/HEAD/factory/manual/manual_gfwlist.txt -------------------------------------------------------------------------------- /factory/manual/manual_proxy.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nthack/Shadowrocket-ADBlock-Rules-Easy/HEAD/factory/manual/manual_proxy.txt -------------------------------------------------------------------------------- /factory/manual/manual_reject.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nthack/Shadowrocket-ADBlock-Rules-Easy/HEAD/factory/manual/manual_reject.txt -------------------------------------------------------------------------------- /factory/requirements.txt: -------------------------------------------------------------------------------- 1 | beautifulsoup4 2 | requests 3 | lxml 4 | configparser -------------------------------------------------------------------------------- /factory/resultant/ad.list: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nthack/Shadowrocket-ADBlock-Rules-Easy/HEAD/factory/resultant/ad.list -------------------------------------------------------------------------------- /factory/resultant/gfw.list: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nthack/Shadowrocket-ADBlock-Rules-Easy/HEAD/factory/resultant/gfw.list -------------------------------------------------------------------------------- /factory/resultant/gfw_unhandle.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nthack/Shadowrocket-ADBlock-Rules-Easy/HEAD/factory/resultant/gfw_unhandle.log -------------------------------------------------------------------------------- /factory/resultant/repo_status.prop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nthack/Shadowrocket-ADBlock-Rules-Easy/HEAD/factory/resultant/repo_status.prop -------------------------------------------------------------------------------- /factory/resultant/top500_direct.list: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nthack/Shadowrocket-ADBlock-Rules-Easy/HEAD/factory/resultant/top500_direct.list -------------------------------------------------------------------------------- /factory/resultant/top500_proxy.list: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nthack/Shadowrocket-ADBlock-Rules-Easy/HEAD/factory/resultant/top500_proxy.list -------------------------------------------------------------------------------- /factory/template/README_template.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nthack/Shadowrocket-ADBlock-Rules-Easy/HEAD/factory/template/README_template.txt -------------------------------------------------------------------------------- /factory/template/sr_banlist.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nthack/Shadowrocket-ADBlock-Rules-Easy/HEAD/factory/template/sr_banlist.txt -------------------------------------------------------------------------------- /factory/template/sr_banlist_ad.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nthack/Shadowrocket-ADBlock-Rules-Easy/HEAD/factory/template/sr_banlist_ad.txt -------------------------------------------------------------------------------- /factory/template/sr_banlist_ad_manual.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nthack/Shadowrocket-ADBlock-Rules-Easy/HEAD/factory/template/sr_banlist_ad_manual.txt -------------------------------------------------------------------------------- /factory/template/sr_banlist_manual.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nthack/Shadowrocket-ADBlock-Rules-Easy/HEAD/factory/template/sr_banlist_manual.txt -------------------------------------------------------------------------------- /factory/template/sr_foot.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nthack/Shadowrocket-ADBlock-Rules-Easy/HEAD/factory/template/sr_foot.txt -------------------------------------------------------------------------------- /factory/template/sr_head.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nthack/Shadowrocket-ADBlock-Rules-Easy/HEAD/factory/template/sr_head.txt -------------------------------------------------------------------------------- /h2y_bak/.gitignore: -------------------------------------------------------------------------------- 1 | /.idea 2 | test.py 3 | -------------------------------------------------------------------------------- /h2y_bak/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nthack/Shadowrocket-ADBlock-Rules-Easy/HEAD/h2y_bak/LICENSE -------------------------------------------------------------------------------- /h2y_bak/factory/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nthack/Shadowrocket-ADBlock-Rules-Easy/HEAD/h2y_bak/factory/README.md -------------------------------------------------------------------------------- /h2y_bak/factory/ad.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nthack/Shadowrocket-ADBlock-Rules-Easy/HEAD/h2y_bak/factory/ad.py -------------------------------------------------------------------------------- /h2y_bak/factory/auto_build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nthack/Shadowrocket-ADBlock-Rules-Easy/HEAD/h2y_bak/factory/auto_build.sh -------------------------------------------------------------------------------- /h2y_bak/factory/build_confs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nthack/Shadowrocket-ADBlock-Rules-Easy/HEAD/h2y_bak/factory/build_confs.py -------------------------------------------------------------------------------- /h2y_bak/factory/chnroutes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nthack/Shadowrocket-ADBlock-Rules-Easy/HEAD/h2y_bak/factory/chnroutes.py -------------------------------------------------------------------------------- /h2y_bak/factory/gfwlist.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nthack/Shadowrocket-ADBlock-Rules-Easy/HEAD/h2y_bak/factory/gfwlist.py -------------------------------------------------------------------------------- /h2y_bak/factory/index.sh.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nthack/Shadowrocket-ADBlock-Rules-Easy/HEAD/h2y_bak/factory/index.sh.bat -------------------------------------------------------------------------------- /h2y_bak/factory/manual_direct.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nthack/Shadowrocket-ADBlock-Rules-Easy/HEAD/h2y_bak/factory/manual_direct.txt -------------------------------------------------------------------------------- /h2y_bak/factory/manual_gfwlist.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nthack/Shadowrocket-ADBlock-Rules-Easy/HEAD/h2y_bak/factory/manual_gfwlist.txt -------------------------------------------------------------------------------- /h2y_bak/factory/manual_proxy.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nthack/Shadowrocket-ADBlock-Rules-Easy/HEAD/h2y_bak/factory/manual_proxy.txt -------------------------------------------------------------------------------- /h2y_bak/factory/manual_reject.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nthack/Shadowrocket-ADBlock-Rules-Easy/HEAD/h2y_bak/factory/manual_reject.txt -------------------------------------------------------------------------------- /h2y_bak/factory/resultant/ad.list: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nthack/Shadowrocket-ADBlock-Rules-Easy/HEAD/h2y_bak/factory/resultant/ad.list -------------------------------------------------------------------------------- /h2y_bak/factory/resultant/gfw.list: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nthack/Shadowrocket-ADBlock-Rules-Easy/HEAD/h2y_bak/factory/resultant/gfw.list -------------------------------------------------------------------------------- /h2y_bak/factory/resultant/gfw_unhandle.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nthack/Shadowrocket-ADBlock-Rules-Easy/HEAD/h2y_bak/factory/resultant/gfw_unhandle.log -------------------------------------------------------------------------------- /h2y_bak/factory/resultant/top500_direct.list: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nthack/Shadowrocket-ADBlock-Rules-Easy/HEAD/h2y_bak/factory/resultant/top500_direct.list -------------------------------------------------------------------------------- /h2y_bak/factory/resultant/top500_proxy.list: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nthack/Shadowrocket-ADBlock-Rules-Easy/HEAD/h2y_bak/factory/resultant/top500_proxy.list -------------------------------------------------------------------------------- /h2y_bak/factory/template/sr_adb.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nthack/Shadowrocket-ADBlock-Rules-Easy/HEAD/h2y_bak/factory/template/sr_adb.txt -------------------------------------------------------------------------------- /h2y_bak/factory/template/sr_backcn.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nthack/Shadowrocket-ADBlock-Rules-Easy/HEAD/h2y_bak/factory/template/sr_backcn.txt -------------------------------------------------------------------------------- /h2y_bak/factory/template/sr_backcn_ad.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nthack/Shadowrocket-ADBlock-Rules-Easy/HEAD/h2y_bak/factory/template/sr_backcn_ad.txt -------------------------------------------------------------------------------- /h2y_bak/factory/template/sr_cnip.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nthack/Shadowrocket-ADBlock-Rules-Easy/HEAD/h2y_bak/factory/template/sr_cnip.txt -------------------------------------------------------------------------------- /h2y_bak/factory/template/sr_cnip_ad.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nthack/Shadowrocket-ADBlock-Rules-Easy/HEAD/h2y_bak/factory/template/sr_cnip_ad.txt -------------------------------------------------------------------------------- /h2y_bak/factory/template/sr_direct_banad.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nthack/Shadowrocket-ADBlock-Rules-Easy/HEAD/h2y_bak/factory/template/sr_direct_banad.txt -------------------------------------------------------------------------------- /h2y_bak/factory/template/sr_foot.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nthack/Shadowrocket-ADBlock-Rules-Easy/HEAD/h2y_bak/factory/template/sr_foot.txt -------------------------------------------------------------------------------- /h2y_bak/factory/template/sr_head.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nthack/Shadowrocket-ADBlock-Rules-Easy/HEAD/h2y_bak/factory/template/sr_head.txt -------------------------------------------------------------------------------- /h2y_bak/factory/template/sr_proxy_banad.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nthack/Shadowrocket-ADBlock-Rules-Easy/HEAD/h2y_bak/factory/template/sr_proxy_banad.txt -------------------------------------------------------------------------------- /h2y_bak/factory/template/sr_top500_banlist.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nthack/Shadowrocket-ADBlock-Rules-Easy/HEAD/h2y_bak/factory/template/sr_top500_banlist.txt -------------------------------------------------------------------------------- /h2y_bak/factory/template/sr_top500_banlist_ad.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nthack/Shadowrocket-ADBlock-Rules-Easy/HEAD/h2y_bak/factory/template/sr_top500_banlist_ad.txt -------------------------------------------------------------------------------- /h2y_bak/factory/template/sr_top500_whitelist.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nthack/Shadowrocket-ADBlock-Rules-Easy/HEAD/h2y_bak/factory/template/sr_top500_whitelist.txt -------------------------------------------------------------------------------- /h2y_bak/factory/template/sr_top500_whitelist_ad.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nthack/Shadowrocket-ADBlock-Rules-Easy/HEAD/h2y_bak/factory/template/sr_top500_whitelist_ad.txt -------------------------------------------------------------------------------- /h2y_bak/factory/top500.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nthack/Shadowrocket-ADBlock-Rules-Easy/HEAD/h2y_bak/factory/top500.py -------------------------------------------------------------------------------- /h2y_bak/figure/guide.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nthack/Shadowrocket-ADBlock-Rules-Easy/HEAD/h2y_bak/figure/guide.png -------------------------------------------------------------------------------- /h2y_bak/figure/guide.xmind: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nthack/Shadowrocket-ADBlock-Rules-Easy/HEAD/h2y_bak/figure/guide.xmind -------------------------------------------------------------------------------- /h2y_bak/figure/sr_backcn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nthack/Shadowrocket-ADBlock-Rules-Easy/HEAD/h2y_bak/figure/sr_backcn.png -------------------------------------------------------------------------------- /h2y_bak/figure/sr_backcn_ad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nthack/Shadowrocket-ADBlock-Rules-Easy/HEAD/h2y_bak/figure/sr_backcn_ad.png -------------------------------------------------------------------------------- /h2y_bak/figure/sr_cnip.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nthack/Shadowrocket-ADBlock-Rules-Easy/HEAD/h2y_bak/figure/sr_cnip.png -------------------------------------------------------------------------------- /h2y_bak/figure/sr_cnip_ad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nthack/Shadowrocket-ADBlock-Rules-Easy/HEAD/h2y_bak/figure/sr_cnip_ad.png -------------------------------------------------------------------------------- /h2y_bak/figure/sr_direct_banad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nthack/Shadowrocket-ADBlock-Rules-Easy/HEAD/h2y_bak/figure/sr_direct_banad.png -------------------------------------------------------------------------------- /h2y_bak/figure/sr_proxy_banad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nthack/Shadowrocket-ADBlock-Rules-Easy/HEAD/h2y_bak/figure/sr_proxy_banad.png -------------------------------------------------------------------------------- /h2y_bak/figure/sr_top500_banlist.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nthack/Shadowrocket-ADBlock-Rules-Easy/HEAD/h2y_bak/figure/sr_top500_banlist.png -------------------------------------------------------------------------------- /h2y_bak/figure/sr_top500_banlist_ad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nthack/Shadowrocket-ADBlock-Rules-Easy/HEAD/h2y_bak/figure/sr_top500_banlist_ad.png -------------------------------------------------------------------------------- /h2y_bak/figure/sr_top500_whitelist.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nthack/Shadowrocket-ADBlock-Rules-Easy/HEAD/h2y_bak/figure/sr_top500_whitelist.png -------------------------------------------------------------------------------- /h2y_bak/figure/sr_top500_whitelist_ad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nthack/Shadowrocket-ADBlock-Rules-Easy/HEAD/h2y_bak/figure/sr_top500_whitelist_ad.png -------------------------------------------------------------------------------- /h2y_bak/figure/免费在线二维码生成器.url: -------------------------------------------------------------------------------- 1 | [InternetShortcut] 2 | URL=https://cn.online-qrcode-generator.com/ 3 | -------------------------------------------------------------------------------- /h2y_bak/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nthack/Shadowrocket-ADBlock-Rules-Easy/HEAD/h2y_bak/readme.md -------------------------------------------------------------------------------- /h2y_bak/requirements.txt: -------------------------------------------------------------------------------- 1 | beautifulsoup4 2 | requests 3 | lxml 4 | -------------------------------------------------------------------------------- /h2y_bak/sr_adb.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nthack/Shadowrocket-ADBlock-Rules-Easy/HEAD/h2y_bak/sr_adb.conf -------------------------------------------------------------------------------- /h2y_bak/sr_backcn.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nthack/Shadowrocket-ADBlock-Rules-Easy/HEAD/h2y_bak/sr_backcn.conf -------------------------------------------------------------------------------- /h2y_bak/sr_backcn_ad.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nthack/Shadowrocket-ADBlock-Rules-Easy/HEAD/h2y_bak/sr_backcn_ad.conf -------------------------------------------------------------------------------- /h2y_bak/sr_cnip.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nthack/Shadowrocket-ADBlock-Rules-Easy/HEAD/h2y_bak/sr_cnip.conf -------------------------------------------------------------------------------- /h2y_bak/sr_cnip_ad.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nthack/Shadowrocket-ADBlock-Rules-Easy/HEAD/h2y_bak/sr_cnip_ad.conf -------------------------------------------------------------------------------- /h2y_bak/sr_direct_banad.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nthack/Shadowrocket-ADBlock-Rules-Easy/HEAD/h2y_bak/sr_direct_banad.conf -------------------------------------------------------------------------------- /h2y_bak/sr_proxy_banad.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nthack/Shadowrocket-ADBlock-Rules-Easy/HEAD/h2y_bak/sr_proxy_banad.conf -------------------------------------------------------------------------------- /h2y_bak/sr_top500_banlist.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nthack/Shadowrocket-ADBlock-Rules-Easy/HEAD/h2y_bak/sr_top500_banlist.conf -------------------------------------------------------------------------------- /h2y_bak/sr_top500_banlist_ad.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nthack/Shadowrocket-ADBlock-Rules-Easy/HEAD/h2y_bak/sr_top500_banlist_ad.conf -------------------------------------------------------------------------------- /h2y_bak/sr_top500_whitelist.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nthack/Shadowrocket-ADBlock-Rules-Easy/HEAD/h2y_bak/sr_top500_whitelist.conf -------------------------------------------------------------------------------- /h2y_bak/sr_top500_whitelist_ad.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nthack/Shadowrocket-ADBlock-Rules-Easy/HEAD/h2y_bak/sr_top500_whitelist_ad.conf -------------------------------------------------------------------------------- /sr_banlist.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nthack/Shadowrocket-ADBlock-Rules-Easy/HEAD/sr_banlist.conf -------------------------------------------------------------------------------- /sr_banlist_ad.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nthack/Shadowrocket-ADBlock-Rules-Easy/HEAD/sr_banlist_ad.conf -------------------------------------------------------------------------------- /sr_banlist_ad_manual.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nthack/Shadowrocket-ADBlock-Rules-Easy/HEAD/sr_banlist_ad_manual.conf -------------------------------------------------------------------------------- /sr_banlist_manual.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nthack/Shadowrocket-ADBlock-Rules-Easy/HEAD/sr_banlist_manual.conf --------------------------------------------------------------------------------