├── .gitignore ├── LICENSE ├── Loon.scripts.conf ├── QuantumultX.rewrite.conf ├── QuantumultX.task.conf ├── README.md ├── README_EN.md ├── Surge.cookies.sgmodule ├── Surge.tasks.sgmodule ├── _config.yml ├── check_in ├── appstore │ └── AppMonitor.js ├── ddcd │ └── ddcd.js ├── energybill │ ├── bill.js │ └── billhn.js ├── funko │ ├── funboat.js │ └── mindstyle.js ├── glados │ ├── checkin.jpeg │ ├── checkin_env.js │ ├── checkincookie.jpeg │ ├── checkincookie_env.js │ └── glados.js ├── hjjc │ └── hjjc.js ├── hotsearch │ └── hot.js ├── hzh │ └── hzh.js ├── idaily │ └── idaily.js ├── jiumu │ └── jiumu.js ├── klcw │ ├── klcw-app.js │ └── klcw.js ├── nasa │ └── nasapic.js ├── ssq │ └── ssq.js ├── taobao │ ├── tb-name.js │ └── tb.js ├── timepop │ └── timepop.js ├── wechatsubs │ ├── gxrcw.js │ ├── sydwzp.js │ └── wechatsubs.js └── weibo │ ├── deletecookie.js │ ├── weibotalk.cookie.js │ ├── weibotalk.js │ └── 获取Cookie指南.MOV ├── evilbutcher.boxjs.json ├── picture ├── 10th.png ├── 11th.png ├── 13th.png ├── alyp.png ├── bill.png ├── bill_tran.png ├── doc.png ├── funko.png ├── funko_tran.png ├── gjb.png ├── gjb_tran.png ├── gxrcw.png ├── gxrcw_tran.png ├── hzh.png ├── hzh_tran.png ├── idaily.png ├── idaily_tran.png ├── img.png ├── jiumu.png ├── jiumu_tran.png ├── klcw.png ├── klcw_tran.png ├── mindstyle.png ├── mindstyle_tran.png ├── nasa.png ├── nasa_tran.png ├── photo.jpeg ├── ssq.png ├── ssq_tran.png ├── sydw.png ├── sydw_tran.png ├── tb.png ├── tb_tran.png ├── timepop.png ├── timepop_tran.png ├── wechat.png ├── wechat_tran.png └── zouswu.png ├── profiles ├── Loon │ └── Loon.scripts.conf ├── QuantumultX │ ├── QuantumultX.rewrite.conf │ ├── QuantumultX.task.json │ ├── addons │ │ ├── funboat.conf │ │ ├── glados.conf │ │ ├── hzh.conf │ │ ├── jiumu.conf │ │ ├── klcw-app.conf │ │ ├── klcw.conf │ │ ├── taobao.conf │ │ ├── timepop.conf │ │ └── weibo.conf │ ├── evil.conf │ └── evilbuther.list ├── Surge │ ├── Surge.cookies.sgmodule │ └── Surge.tasks.sgmodule └── package.json └── remove_ad ├── 10086.js ├── README.md ├── bbdc.js ├── bjyd.js ├── nltk.js ├── pk.js ├── quake.js ├── rewrite.txt └── zhihu.js /.gitignore: -------------------------------------------------------------------------------- 1 | zhsz 2 | gjb -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evilbutcher/QuantumultX/HEAD/LICENSE -------------------------------------------------------------------------------- /Loon.scripts.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evilbutcher/QuantumultX/HEAD/Loon.scripts.conf -------------------------------------------------------------------------------- /QuantumultX.rewrite.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evilbutcher/QuantumultX/HEAD/QuantumultX.rewrite.conf -------------------------------------------------------------------------------- /QuantumultX.task.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evilbutcher/QuantumultX/HEAD/QuantumultX.task.conf -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evilbutcher/QuantumultX/HEAD/README.md -------------------------------------------------------------------------------- /README_EN.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evilbutcher/QuantumultX/HEAD/README_EN.md -------------------------------------------------------------------------------- /Surge.cookies.sgmodule: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evilbutcher/QuantumultX/HEAD/Surge.cookies.sgmodule -------------------------------------------------------------------------------- /Surge.tasks.sgmodule: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evilbutcher/QuantumultX/HEAD/Surge.tasks.sgmodule -------------------------------------------------------------------------------- /_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evilbutcher/QuantumultX/HEAD/_config.yml -------------------------------------------------------------------------------- /check_in/appstore/AppMonitor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evilbutcher/QuantumultX/HEAD/check_in/appstore/AppMonitor.js -------------------------------------------------------------------------------- /check_in/ddcd/ddcd.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evilbutcher/QuantumultX/HEAD/check_in/ddcd/ddcd.js -------------------------------------------------------------------------------- /check_in/energybill/bill.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evilbutcher/QuantumultX/HEAD/check_in/energybill/bill.js -------------------------------------------------------------------------------- /check_in/energybill/billhn.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evilbutcher/QuantumultX/HEAD/check_in/energybill/billhn.js -------------------------------------------------------------------------------- /check_in/funko/funboat.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evilbutcher/QuantumultX/HEAD/check_in/funko/funboat.js -------------------------------------------------------------------------------- /check_in/funko/mindstyle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evilbutcher/QuantumultX/HEAD/check_in/funko/mindstyle.js -------------------------------------------------------------------------------- /check_in/glados/checkin.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evilbutcher/QuantumultX/HEAD/check_in/glados/checkin.jpeg -------------------------------------------------------------------------------- /check_in/glados/checkin_env.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evilbutcher/QuantumultX/HEAD/check_in/glados/checkin_env.js -------------------------------------------------------------------------------- /check_in/glados/checkincookie.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evilbutcher/QuantumultX/HEAD/check_in/glados/checkincookie.jpeg -------------------------------------------------------------------------------- /check_in/glados/checkincookie_env.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evilbutcher/QuantumultX/HEAD/check_in/glados/checkincookie_env.js -------------------------------------------------------------------------------- /check_in/glados/glados.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evilbutcher/QuantumultX/HEAD/check_in/glados/glados.js -------------------------------------------------------------------------------- /check_in/hjjc/hjjc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evilbutcher/QuantumultX/HEAD/check_in/hjjc/hjjc.js -------------------------------------------------------------------------------- /check_in/hotsearch/hot.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evilbutcher/QuantumultX/HEAD/check_in/hotsearch/hot.js -------------------------------------------------------------------------------- /check_in/hzh/hzh.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evilbutcher/QuantumultX/HEAD/check_in/hzh/hzh.js -------------------------------------------------------------------------------- /check_in/idaily/idaily.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evilbutcher/QuantumultX/HEAD/check_in/idaily/idaily.js -------------------------------------------------------------------------------- /check_in/jiumu/jiumu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evilbutcher/QuantumultX/HEAD/check_in/jiumu/jiumu.js -------------------------------------------------------------------------------- /check_in/klcw/klcw-app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evilbutcher/QuantumultX/HEAD/check_in/klcw/klcw-app.js -------------------------------------------------------------------------------- /check_in/klcw/klcw.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evilbutcher/QuantumultX/HEAD/check_in/klcw/klcw.js -------------------------------------------------------------------------------- /check_in/nasa/nasapic.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evilbutcher/QuantumultX/HEAD/check_in/nasa/nasapic.js -------------------------------------------------------------------------------- /check_in/ssq/ssq.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evilbutcher/QuantumultX/HEAD/check_in/ssq/ssq.js -------------------------------------------------------------------------------- /check_in/taobao/tb-name.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evilbutcher/QuantumultX/HEAD/check_in/taobao/tb-name.js -------------------------------------------------------------------------------- /check_in/taobao/tb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evilbutcher/QuantumultX/HEAD/check_in/taobao/tb.js -------------------------------------------------------------------------------- /check_in/timepop/timepop.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evilbutcher/QuantumultX/HEAD/check_in/timepop/timepop.js -------------------------------------------------------------------------------- /check_in/wechatsubs/gxrcw.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evilbutcher/QuantumultX/HEAD/check_in/wechatsubs/gxrcw.js -------------------------------------------------------------------------------- /check_in/wechatsubs/sydwzp.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evilbutcher/QuantumultX/HEAD/check_in/wechatsubs/sydwzp.js -------------------------------------------------------------------------------- /check_in/wechatsubs/wechatsubs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evilbutcher/QuantumultX/HEAD/check_in/wechatsubs/wechatsubs.js -------------------------------------------------------------------------------- /check_in/weibo/deletecookie.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evilbutcher/QuantumultX/HEAD/check_in/weibo/deletecookie.js -------------------------------------------------------------------------------- /check_in/weibo/weibotalk.cookie.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evilbutcher/QuantumultX/HEAD/check_in/weibo/weibotalk.cookie.js -------------------------------------------------------------------------------- /check_in/weibo/weibotalk.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evilbutcher/QuantumultX/HEAD/check_in/weibo/weibotalk.js -------------------------------------------------------------------------------- /check_in/weibo/获取Cookie指南.MOV: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evilbutcher/QuantumultX/HEAD/check_in/weibo/获取Cookie指南.MOV -------------------------------------------------------------------------------- /evilbutcher.boxjs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evilbutcher/QuantumultX/HEAD/evilbutcher.boxjs.json -------------------------------------------------------------------------------- /picture/10th.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evilbutcher/QuantumultX/HEAD/picture/10th.png -------------------------------------------------------------------------------- /picture/11th.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evilbutcher/QuantumultX/HEAD/picture/11th.png -------------------------------------------------------------------------------- /picture/13th.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evilbutcher/QuantumultX/HEAD/picture/13th.png -------------------------------------------------------------------------------- /picture/alyp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evilbutcher/QuantumultX/HEAD/picture/alyp.png -------------------------------------------------------------------------------- /picture/bill.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evilbutcher/QuantumultX/HEAD/picture/bill.png -------------------------------------------------------------------------------- /picture/bill_tran.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evilbutcher/QuantumultX/HEAD/picture/bill_tran.png -------------------------------------------------------------------------------- /picture/doc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evilbutcher/QuantumultX/HEAD/picture/doc.png -------------------------------------------------------------------------------- /picture/funko.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evilbutcher/QuantumultX/HEAD/picture/funko.png -------------------------------------------------------------------------------- /picture/funko_tran.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evilbutcher/QuantumultX/HEAD/picture/funko_tran.png -------------------------------------------------------------------------------- /picture/gjb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evilbutcher/QuantumultX/HEAD/picture/gjb.png -------------------------------------------------------------------------------- /picture/gjb_tran.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evilbutcher/QuantumultX/HEAD/picture/gjb_tran.png -------------------------------------------------------------------------------- /picture/gxrcw.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evilbutcher/QuantumultX/HEAD/picture/gxrcw.png -------------------------------------------------------------------------------- /picture/gxrcw_tran.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evilbutcher/QuantumultX/HEAD/picture/gxrcw_tran.png -------------------------------------------------------------------------------- /picture/hzh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evilbutcher/QuantumultX/HEAD/picture/hzh.png -------------------------------------------------------------------------------- /picture/hzh_tran.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evilbutcher/QuantumultX/HEAD/picture/hzh_tran.png -------------------------------------------------------------------------------- /picture/idaily.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evilbutcher/QuantumultX/HEAD/picture/idaily.png -------------------------------------------------------------------------------- /picture/idaily_tran.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evilbutcher/QuantumultX/HEAD/picture/idaily_tran.png -------------------------------------------------------------------------------- /picture/img.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evilbutcher/QuantumultX/HEAD/picture/img.png -------------------------------------------------------------------------------- /picture/jiumu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evilbutcher/QuantumultX/HEAD/picture/jiumu.png -------------------------------------------------------------------------------- /picture/jiumu_tran.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evilbutcher/QuantumultX/HEAD/picture/jiumu_tran.png -------------------------------------------------------------------------------- /picture/klcw.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evilbutcher/QuantumultX/HEAD/picture/klcw.png -------------------------------------------------------------------------------- /picture/klcw_tran.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evilbutcher/QuantumultX/HEAD/picture/klcw_tran.png -------------------------------------------------------------------------------- /picture/mindstyle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evilbutcher/QuantumultX/HEAD/picture/mindstyle.png -------------------------------------------------------------------------------- /picture/mindstyle_tran.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evilbutcher/QuantumultX/HEAD/picture/mindstyle_tran.png -------------------------------------------------------------------------------- /picture/nasa.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evilbutcher/QuantumultX/HEAD/picture/nasa.png -------------------------------------------------------------------------------- /picture/nasa_tran.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evilbutcher/QuantumultX/HEAD/picture/nasa_tran.png -------------------------------------------------------------------------------- /picture/photo.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evilbutcher/QuantumultX/HEAD/picture/photo.jpeg -------------------------------------------------------------------------------- /picture/ssq.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evilbutcher/QuantumultX/HEAD/picture/ssq.png -------------------------------------------------------------------------------- /picture/ssq_tran.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evilbutcher/QuantumultX/HEAD/picture/ssq_tran.png -------------------------------------------------------------------------------- /picture/sydw.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evilbutcher/QuantumultX/HEAD/picture/sydw.png -------------------------------------------------------------------------------- /picture/sydw_tran.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evilbutcher/QuantumultX/HEAD/picture/sydw_tran.png -------------------------------------------------------------------------------- /picture/tb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evilbutcher/QuantumultX/HEAD/picture/tb.png -------------------------------------------------------------------------------- /picture/tb_tran.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evilbutcher/QuantumultX/HEAD/picture/tb_tran.png -------------------------------------------------------------------------------- /picture/timepop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evilbutcher/QuantumultX/HEAD/picture/timepop.png -------------------------------------------------------------------------------- /picture/timepop_tran.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evilbutcher/QuantumultX/HEAD/picture/timepop_tran.png -------------------------------------------------------------------------------- /picture/wechat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evilbutcher/QuantumultX/HEAD/picture/wechat.png -------------------------------------------------------------------------------- /picture/wechat_tran.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evilbutcher/QuantumultX/HEAD/picture/wechat_tran.png -------------------------------------------------------------------------------- /picture/zouswu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evilbutcher/QuantumultX/HEAD/picture/zouswu.png -------------------------------------------------------------------------------- /profiles/Loon/Loon.scripts.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evilbutcher/QuantumultX/HEAD/profiles/Loon/Loon.scripts.conf -------------------------------------------------------------------------------- /profiles/QuantumultX/QuantumultX.rewrite.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evilbutcher/QuantumultX/HEAD/profiles/QuantumultX/QuantumultX.rewrite.conf -------------------------------------------------------------------------------- /profiles/QuantumultX/QuantumultX.task.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evilbutcher/QuantumultX/HEAD/profiles/QuantumultX/QuantumultX.task.json -------------------------------------------------------------------------------- /profiles/QuantumultX/addons/funboat.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evilbutcher/QuantumultX/HEAD/profiles/QuantumultX/addons/funboat.conf -------------------------------------------------------------------------------- /profiles/QuantumultX/addons/glados.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evilbutcher/QuantumultX/HEAD/profiles/QuantumultX/addons/glados.conf -------------------------------------------------------------------------------- /profiles/QuantumultX/addons/hzh.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evilbutcher/QuantumultX/HEAD/profiles/QuantumultX/addons/hzh.conf -------------------------------------------------------------------------------- /profiles/QuantumultX/addons/jiumu.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evilbutcher/QuantumultX/HEAD/profiles/QuantumultX/addons/jiumu.conf -------------------------------------------------------------------------------- /profiles/QuantumultX/addons/klcw-app.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evilbutcher/QuantumultX/HEAD/profiles/QuantumultX/addons/klcw-app.conf -------------------------------------------------------------------------------- /profiles/QuantumultX/addons/klcw.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evilbutcher/QuantumultX/HEAD/profiles/QuantumultX/addons/klcw.conf -------------------------------------------------------------------------------- /profiles/QuantumultX/addons/taobao.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evilbutcher/QuantumultX/HEAD/profiles/QuantumultX/addons/taobao.conf -------------------------------------------------------------------------------- /profiles/QuantumultX/addons/timepop.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evilbutcher/QuantumultX/HEAD/profiles/QuantumultX/addons/timepop.conf -------------------------------------------------------------------------------- /profiles/QuantumultX/addons/weibo.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evilbutcher/QuantumultX/HEAD/profiles/QuantumultX/addons/weibo.conf -------------------------------------------------------------------------------- /profiles/QuantumultX/evil.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evilbutcher/QuantumultX/HEAD/profiles/QuantumultX/evil.conf -------------------------------------------------------------------------------- /profiles/QuantumultX/evilbuther.list: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evilbutcher/QuantumultX/HEAD/profiles/QuantumultX/evilbuther.list -------------------------------------------------------------------------------- /profiles/Surge/Surge.cookies.sgmodule: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evilbutcher/QuantumultX/HEAD/profiles/Surge/Surge.cookies.sgmodule -------------------------------------------------------------------------------- /profiles/Surge/Surge.tasks.sgmodule: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evilbutcher/QuantumultX/HEAD/profiles/Surge/Surge.tasks.sgmodule -------------------------------------------------------------------------------- /profiles/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evilbutcher/QuantumultX/HEAD/profiles/package.json -------------------------------------------------------------------------------- /remove_ad/10086.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evilbutcher/QuantumultX/HEAD/remove_ad/10086.js -------------------------------------------------------------------------------- /remove_ad/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evilbutcher/QuantumultX/HEAD/remove_ad/README.md -------------------------------------------------------------------------------- /remove_ad/bbdc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evilbutcher/QuantumultX/HEAD/remove_ad/bbdc.js -------------------------------------------------------------------------------- /remove_ad/bjyd.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evilbutcher/QuantumultX/HEAD/remove_ad/bjyd.js -------------------------------------------------------------------------------- /remove_ad/nltk.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evilbutcher/QuantumultX/HEAD/remove_ad/nltk.js -------------------------------------------------------------------------------- /remove_ad/pk.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evilbutcher/QuantumultX/HEAD/remove_ad/pk.js -------------------------------------------------------------------------------- /remove_ad/quake.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evilbutcher/QuantumultX/HEAD/remove_ad/quake.js -------------------------------------------------------------------------------- /remove_ad/rewrite.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evilbutcher/QuantumultX/HEAD/remove_ad/rewrite.txt -------------------------------------------------------------------------------- /remove_ad/zhihu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evilbutcher/QuantumultX/HEAD/remove_ad/zhihu.js --------------------------------------------------------------------------------