├── .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 /.gitignore: -------------------------------------------------------------------------------- 1 | /.idea 2 | test.py 3 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h2y/Shadowrocket-ADBlock-Rules/HEAD/LICENSE -------------------------------------------------------------------------------- /factory/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h2y/Shadowrocket-ADBlock-Rules/HEAD/factory/README.md -------------------------------------------------------------------------------- /factory/ad.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h2y/Shadowrocket-ADBlock-Rules/HEAD/factory/ad.py -------------------------------------------------------------------------------- /factory/auto_build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h2y/Shadowrocket-ADBlock-Rules/HEAD/factory/auto_build.sh -------------------------------------------------------------------------------- /factory/build_confs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h2y/Shadowrocket-ADBlock-Rules/HEAD/factory/build_confs.py -------------------------------------------------------------------------------- /factory/chnroutes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h2y/Shadowrocket-ADBlock-Rules/HEAD/factory/chnroutes.py -------------------------------------------------------------------------------- /factory/gfwlist.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h2y/Shadowrocket-ADBlock-Rules/HEAD/factory/gfwlist.py -------------------------------------------------------------------------------- /factory/index.sh.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h2y/Shadowrocket-ADBlock-Rules/HEAD/factory/index.sh.bat -------------------------------------------------------------------------------- /factory/manual_direct.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h2y/Shadowrocket-ADBlock-Rules/HEAD/factory/manual_direct.txt -------------------------------------------------------------------------------- /factory/manual_gfwlist.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h2y/Shadowrocket-ADBlock-Rules/HEAD/factory/manual_gfwlist.txt -------------------------------------------------------------------------------- /factory/manual_proxy.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h2y/Shadowrocket-ADBlock-Rules/HEAD/factory/manual_proxy.txt -------------------------------------------------------------------------------- /factory/manual_reject.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h2y/Shadowrocket-ADBlock-Rules/HEAD/factory/manual_reject.txt -------------------------------------------------------------------------------- /factory/resultant/ad.list: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h2y/Shadowrocket-ADBlock-Rules/HEAD/factory/resultant/ad.list -------------------------------------------------------------------------------- /factory/resultant/gfw.list: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h2y/Shadowrocket-ADBlock-Rules/HEAD/factory/resultant/gfw.list -------------------------------------------------------------------------------- /factory/resultant/gfw_unhandle.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h2y/Shadowrocket-ADBlock-Rules/HEAD/factory/resultant/gfw_unhandle.log -------------------------------------------------------------------------------- /factory/resultant/top500_direct.list: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h2y/Shadowrocket-ADBlock-Rules/HEAD/factory/resultant/top500_direct.list -------------------------------------------------------------------------------- /factory/resultant/top500_proxy.list: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h2y/Shadowrocket-ADBlock-Rules/HEAD/factory/resultant/top500_proxy.list -------------------------------------------------------------------------------- /factory/template/sr_adb.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h2y/Shadowrocket-ADBlock-Rules/HEAD/factory/template/sr_adb.txt -------------------------------------------------------------------------------- /factory/template/sr_backcn.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h2y/Shadowrocket-ADBlock-Rules/HEAD/factory/template/sr_backcn.txt -------------------------------------------------------------------------------- /factory/template/sr_backcn_ad.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h2y/Shadowrocket-ADBlock-Rules/HEAD/factory/template/sr_backcn_ad.txt -------------------------------------------------------------------------------- /factory/template/sr_cnip.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h2y/Shadowrocket-ADBlock-Rules/HEAD/factory/template/sr_cnip.txt -------------------------------------------------------------------------------- /factory/template/sr_cnip_ad.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h2y/Shadowrocket-ADBlock-Rules/HEAD/factory/template/sr_cnip_ad.txt -------------------------------------------------------------------------------- /factory/template/sr_direct_banad.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h2y/Shadowrocket-ADBlock-Rules/HEAD/factory/template/sr_direct_banad.txt -------------------------------------------------------------------------------- /factory/template/sr_foot.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h2y/Shadowrocket-ADBlock-Rules/HEAD/factory/template/sr_foot.txt -------------------------------------------------------------------------------- /factory/template/sr_head.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h2y/Shadowrocket-ADBlock-Rules/HEAD/factory/template/sr_head.txt -------------------------------------------------------------------------------- /factory/template/sr_proxy_banad.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h2y/Shadowrocket-ADBlock-Rules/HEAD/factory/template/sr_proxy_banad.txt -------------------------------------------------------------------------------- /factory/template/sr_top500_banlist.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h2y/Shadowrocket-ADBlock-Rules/HEAD/factory/template/sr_top500_banlist.txt -------------------------------------------------------------------------------- /factory/template/sr_top500_banlist_ad.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h2y/Shadowrocket-ADBlock-Rules/HEAD/factory/template/sr_top500_banlist_ad.txt -------------------------------------------------------------------------------- /factory/template/sr_top500_whitelist.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h2y/Shadowrocket-ADBlock-Rules/HEAD/factory/template/sr_top500_whitelist.txt -------------------------------------------------------------------------------- /factory/template/sr_top500_whitelist_ad.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h2y/Shadowrocket-ADBlock-Rules/HEAD/factory/template/sr_top500_whitelist_ad.txt -------------------------------------------------------------------------------- /factory/top500.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h2y/Shadowrocket-ADBlock-Rules/HEAD/factory/top500.py -------------------------------------------------------------------------------- /figure/guide.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h2y/Shadowrocket-ADBlock-Rules/HEAD/figure/guide.png -------------------------------------------------------------------------------- /figure/guide.xmind: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h2y/Shadowrocket-ADBlock-Rules/HEAD/figure/guide.xmind -------------------------------------------------------------------------------- /figure/sr_backcn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h2y/Shadowrocket-ADBlock-Rules/HEAD/figure/sr_backcn.png -------------------------------------------------------------------------------- /figure/sr_backcn_ad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h2y/Shadowrocket-ADBlock-Rules/HEAD/figure/sr_backcn_ad.png -------------------------------------------------------------------------------- /figure/sr_cnip.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h2y/Shadowrocket-ADBlock-Rules/HEAD/figure/sr_cnip.png -------------------------------------------------------------------------------- /figure/sr_cnip_ad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h2y/Shadowrocket-ADBlock-Rules/HEAD/figure/sr_cnip_ad.png -------------------------------------------------------------------------------- /figure/sr_direct_banad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h2y/Shadowrocket-ADBlock-Rules/HEAD/figure/sr_direct_banad.png -------------------------------------------------------------------------------- /figure/sr_proxy_banad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h2y/Shadowrocket-ADBlock-Rules/HEAD/figure/sr_proxy_banad.png -------------------------------------------------------------------------------- /figure/sr_top500_banlist.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h2y/Shadowrocket-ADBlock-Rules/HEAD/figure/sr_top500_banlist.png -------------------------------------------------------------------------------- /figure/sr_top500_banlist_ad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h2y/Shadowrocket-ADBlock-Rules/HEAD/figure/sr_top500_banlist_ad.png -------------------------------------------------------------------------------- /figure/sr_top500_whitelist.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h2y/Shadowrocket-ADBlock-Rules/HEAD/figure/sr_top500_whitelist.png -------------------------------------------------------------------------------- /figure/sr_top500_whitelist_ad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h2y/Shadowrocket-ADBlock-Rules/HEAD/figure/sr_top500_whitelist_ad.png -------------------------------------------------------------------------------- /figure/免费在线二维码生成器.url: -------------------------------------------------------------------------------- 1 | [InternetShortcut] 2 | URL=https://cn.online-qrcode-generator.com/ 3 | -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h2y/Shadowrocket-ADBlock-Rules/HEAD/readme.md -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | beautifulsoup4 2 | requests 3 | lxml 4 | -------------------------------------------------------------------------------- /sr_adb.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h2y/Shadowrocket-ADBlock-Rules/HEAD/sr_adb.conf -------------------------------------------------------------------------------- /sr_backcn.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h2y/Shadowrocket-ADBlock-Rules/HEAD/sr_backcn.conf -------------------------------------------------------------------------------- /sr_backcn_ad.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h2y/Shadowrocket-ADBlock-Rules/HEAD/sr_backcn_ad.conf -------------------------------------------------------------------------------- /sr_cnip.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h2y/Shadowrocket-ADBlock-Rules/HEAD/sr_cnip.conf -------------------------------------------------------------------------------- /sr_cnip_ad.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h2y/Shadowrocket-ADBlock-Rules/HEAD/sr_cnip_ad.conf -------------------------------------------------------------------------------- /sr_direct_banad.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h2y/Shadowrocket-ADBlock-Rules/HEAD/sr_direct_banad.conf -------------------------------------------------------------------------------- /sr_proxy_banad.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h2y/Shadowrocket-ADBlock-Rules/HEAD/sr_proxy_banad.conf -------------------------------------------------------------------------------- /sr_top500_banlist.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h2y/Shadowrocket-ADBlock-Rules/HEAD/sr_top500_banlist.conf -------------------------------------------------------------------------------- /sr_top500_banlist_ad.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h2y/Shadowrocket-ADBlock-Rules/HEAD/sr_top500_banlist_ad.conf -------------------------------------------------------------------------------- /sr_top500_whitelist.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h2y/Shadowrocket-ADBlock-Rules/HEAD/sr_top500_whitelist.conf -------------------------------------------------------------------------------- /sr_top500_whitelist_ad.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h2y/Shadowrocket-ADBlock-Rules/HEAD/sr_top500_whitelist_ad.conf --------------------------------------------------------------------------------