mirror of
https://github.com/fmz200/wool_scripts.git
synced 2025-12-19 13:41:18 +08:00
Initial commit: new history
This commit is contained in:
101
QuantumultX/rewrite/00-How-To-Use-Rewrite.md
Normal file
101
QuantumultX/rewrite/00-How-To-Use-Rewrite.md
Normal file
@ -0,0 +1,101 @@
|
||||
# 怎么添加和使用重写:How to add and use rewrite
|
||||
|
||||
> 📣 说明:这部分文档只讨论怎么添加和使用重写,以及主要有几种方式添加重写
|
||||
|
||||
## 1️⃣ 什么是重写?
|
||||
> **rewrite**:又名“修订,修改”,从编程 [eg:Java] 的角度来说,重写的意思是:重写是子类对父类的允许访问的方法的实现过程进行重新编写, 返回值和形参都不能改变。即`外壳保持不变,核心内容重写!`
|
||||
> 简单来说就是对我们`发出的请求`和`接收到的数据`在不修改数据结构的情况下,修改其具体数据以达到我们的目的。
|
||||
>
|
||||
> ➡️ 举个栗子:
|
||||
>
|
||||
> 假如我们收到一组数据:
|
||||
>> ```json
|
||||
>> {"basic":{"token":123},"info":[{"ad":"example.jpg"}],"result":0}
|
||||
>>```
|
||||
> 我们可以修改为:
|
||||
>> ```json
|
||||
>> {"basic":{"token":123},"info":[],"result":1}
|
||||
>>```
|
||||
> 可以看到我们把 **info** 中的内容删除了,同时修改了 **result** 的值,但是 **info** 的数据类型没有变(还是List),整体的数据结构也没有变,只是对具体的数据进行了修改。
|
||||
>
|
||||
> ❶ 为什么不能修改数据结构?原因是数据都是从服务器返回到APP或者APP发送到服务器的,两者数据的封装有约定的规则,如果一方修改了数据结构,那另一方就无法解析导致报错。就比如电视剧里接头的双方都有对应的暗号,任何一方说错都会对不上号。
|
||||
>
|
||||
> ❷ 数据的修改主要是`修改数值`和`删除部分数据`,比如上方的数据中 `result = 0` 表示“不是会员”,那我们修改成 1 成为会员;info 里存放的是广告数据,那我们把他删除,app就不会则展示广告。
|
||||
> 为什么不能新增字段数据呢?同 ❶ 中所说,双方是有约定的,多出的数据对方是不认识的。
|
||||
> 例如上方的数据我们增加一个字段数据成 `{"basic":{"token":123},"info":[],"result":1, "data":9}` ,`"data":9` 对方是不认的。
|
||||
|
||||
|
||||
## 2️⃣ 重写有什么作用?
|
||||
> 同 1️⃣ 中所说,既然可以修改数据,那部分软件/网站的会员以及广告就有了解锁的方法。所以,重写的作用主要是:解锁软件会员以及去除烦人的广告,这是最常用的。㊗️ 注:这只是其中的部分功能。
|
||||
>
|
||||
> ❶ 为什么是部分软件和网站?因为修改数据需要一个必要的条件:域名必须可以进行MITM(中间人攻击),只有可以MITM才能获取到app与服务器传输的数据进行修改。例如抖音系列的域名都是无法MITM的,你会发现无法抓包。
|
||||
|
||||
## 3️⃣ 怎么添加重写?有哪些方式?
|
||||
> 打开quanX的设置页面或者配置文件你能看到重写主要有两个地方可以配置: `[rewrite_remote]` 以及 `[rewrite_local]`。
|
||||
|
||||
> ❶ 他们的区别是什么?
|
||||
>> ⒈ 远程复写`[rewrite_remote]`:配置都是别人写好的,包含主机名 hostname 以及复写 rewrite 规则,拿来即用;本地复写`[rewrite_local]`:只有复写 rewrite 规则,hostname 需要自行在 `[hostname]` 模块再添加,相当于把`[rewrite_remote]`文件中的配置复制出来自行配置。
|
||||
>>
|
||||
>> ⒉ 对于同一条规则,`[rewrite_local]`优先于`[rewrite_remote]`生效,意思就是`[rewrite_remote]`的配置是多余的不会生效。
|
||||
>>
|
||||
>> ⒊ 对于同一条规则,任选一种配置即可,推荐`[rewrite_remote]`。
|
||||
|
||||
> ⏩ 话不多说,下面以本库中备份的墨鱼脚本[某度网盘倍速](https://github.com/fmz200/wool_scripts/blob/main/QuantumultX/rewrite/Function/BaiduCloud.conf)为例,讲讲怎么一步一步在quanX中配置。
|
||||
> 先来看看脚本内容有什么:
|
||||
> ```
|
||||
> # > 百度云
|
||||
> https:\/\/pan\.baidu\.com\/rest\/2\.0\/membership\/user url script-response-body https://raw.githubusercontent.com/fmz200/wool_scripts/main/QuantumultX/scripts/Crack/bdcloud.js
|
||||
>
|
||||
> hostname = pan.baidu.com
|
||||
> ```
|
||||
> 配置中去掉注释有两行有效内容:
|
||||
> ```
|
||||
> https:\/\/pan\.baidu\.com\/rest\/2\.0\/membership\/user url script-response-body https://raw.githubusercontent.com/fmz200/wool_scripts/main/QuantumultX/scripts/Crack/bdcloud.js
|
||||
> hostname = pan.baidu.com
|
||||
> ```
|
||||
> 第 2 行:hostname表示对哪一个域名进行MITM
|
||||
>
|
||||
> 第 1 行:包含四部分,分别表示:想要MITM的请求路径, url类型, 脚本-对响应-响应体的数据, 用于MITM的脚本路径
|
||||
>
|
||||
|
||||
### ① 先说 `[rewrite_remote]`
|
||||
|
||||
> 第一步:点按首页右下角的小风车,往下滑找到`重写`模块;选择`规则资源`【下图1】;
|
||||
>
|
||||
> 第二步:引用资源页面,点击右上角加👌号➕跳转到填写页面【下图2】;
|
||||
>
|
||||
> 第三步:填写`资源标签`和`资源路径`,标签可以随便写,但是路径必须填写正确,填好以后点击右上角对号✅保存【下图3】;
|
||||
>
|
||||
> 第四步:保存以后找到刚添加的重写,右滑选择更新图标🔄【下图4】。
|
||||
>> 若不提示任何错误就是更新完毕,若出现404表示资源不存在,等待作者更新;若提示资源无法访问、网络错误等可换个节点在尝试更新。
|
||||
>> 若不启用,取消勾选即可。
|
||||
>
|
||||
> 第五步:配置完毕,自行测试可用性。
|
||||
|
||||

|
||||
|
||||
### ② 再说 `[rewrite_local]`
|
||||
> 上面的配置文件如果你不想直接引用,可以复制其中的内容自行添加,这就是`[rewrite_local]`
|
||||
|
||||
> 第一步:点按首页右下角的小风车,往下滑找到`重写`模块;选择`重写规则`【下图1】;
|
||||
>
|
||||
> 第二步:重写规则页面,点击右上角加号进行填写,`类型`要保持一致,选择上方配置文件中第一行的`script-response-body`【下图2,3】;
|
||||
>
|
||||
> 第三步:`用以匹配的URL`和`脚本路径`都是从上方配置文件中复制出来的,填好以后点击右上角对号✅保存【下图4】;
|
||||
>
|
||||
> 第四步:保存以后找到重写模块下方的`MITM`模块,选择`主机名`【下图1】。
|
||||
>
|
||||
> 第五步:主机名页面点击右上角加号,填写上方配置文件中的hostname,点击`好的`保存;
|
||||
>> 引用的脚本回自动更新,若出现404表示资源不存在,等待作者更新;若提示资源无法访问、网络错误等可换个节点在尝试更新。
|
||||
>>
|
||||
>> 你会发现上方配置文件中的所有内容都使用完毕。
|
||||
>
|
||||
> 第六步:配置完毕,自行测试可用性。
|
||||
|
||||

|
||||

|
||||
|
||||
### 配置完毕
|
||||
|
||||
## 4️⃣ 常见问题及解决方式
|
||||
|
||||
3852
QuantumultX/rewrite/chongxie.txt
Normal file
3852
QuantumultX/rewrite/chongxie.txt
Normal file
File diff suppressed because one or more lines are too long
519
QuantumultX/rewrite/cleanup.snippet
Normal file
519
QuantumultX/rewrite/cleanup.snippet
Normal file
@ -0,0 +1,519 @@
|
||||
#!name=App&小程序净化合集
|
||||
#!desc=去除一些冗余的模块,遇到异常时关闭此配置
|
||||
#!author=奶思
|
||||
#!homepage=https://github.com/fmz200/wool_scripts
|
||||
#!icon=https://raw.githubusercontent.com/fmz200/wool_scripts/main/icons/gif/naisi-01.gif
|
||||
#!raw-url=https://github.com/fmz200/wool_scripts/raw/main/QuantumultX/rewrite/cleanup.snippet
|
||||
#!tg-group=https://t.me/lanjieguanggao
|
||||
#!category=奶思的模块
|
||||
#!tag = 去广告, 奶思
|
||||
#!system = iOS, iPadOS
|
||||
#!system_version =
|
||||
#!loon_version =
|
||||
#!date=2023-11-30 19:36:00
|
||||
#!support=约88款app
|
||||
#############################################
|
||||
# "reject" 策略返回 HTTP 状态码 404,不附带任何额外内容
|
||||
# "reject-200" 策略返回 HTTP 状态码 200,不附带任何额外内容
|
||||
# "reject-img" 策略返回 HTTP 状态码 200,同时附带 1px gif
|
||||
# "reject-dict" 策略返回 HTTP 状态码 200,同时附带一个空的 JSON 对象
|
||||
# "reject-array" 策略返回 HTTP 状态码 200,同时附带一个空的 JSON 数组
|
||||
#############################################
|
||||
# 常见问题:
|
||||
# 1️⃣:我知道规则,不知道主机名怎么办?
|
||||
# ✅:几乎所有的主机名都是从规则中提取出来的,先有的规则再有的主机名
|
||||
# 举个栗子:12306的一条规则URL👉🏻^https?:\/\/ad\.12306\.cn\/ad\/ser\/getAdList
|
||||
# 只需要去掉反斜杠:^https?://ad.12306.cn/ad/ser/getAdList
|
||||
# 不用再说了吧,ad.12306.cn就是想要的主机名
|
||||
# 2️⃣:有些常用的软件为什么没有去广告配置?
|
||||
# ✅:如果要利用重写去广告,就需要对请求或响应信息进行解密(MITM),现在一些软件已经禁止了MITM,所以就无法去广告。
|
||||
#############################################
|
||||
|
||||
|
||||
# 去重后的hostname,将对以下域名进行MITM(MAN-IN-THE-MIDDLE:中间人攻击)
|
||||
hostname = member.alipan.com, vod-movie.maoyan.com, wx.maoyan.com, api.maoyan.com, ad.maoyan.com, hwimg.beingfine.cn, learnywhere.cn, newton.gumingnc.com, gw-passenger-wap.01zhuanche.com, www.deppon.com, passengerapi.saicmobility.com, passenger.t3go.cn, webapi.qmai.cn, images.qmai.cn, wx.mygolbs.com, hkj178.com, ccmsupport-sz.tenpay.com, api.songguo7.com, triangle.wearemanner.com, cappapi.alittle-tea.com, alittle-tea.oss-cn-shanghai.aliyuncs.com, member.lxjchina.com.cn, cbd-gateway-service-applets.hualala.com, coco-com.e.verystar.net, lawsonapi.yorentown.com, plt.yorentown.com, minifm.maxxipoint.com, htwkop.xiaojukeji.com, mxsa.mxbc.net, go.heytea.com, miniapp.sexytea2013.com, api-fouth-mem.huazhu.com, wxapp.bestwehotel.com, mystore-gw.watsonsvip.com.cn, app.homeinns.com, wx.bthhotels.com, tm-api.pin-dao.cn, res.pizzahut.com.cn, orders.kfc.com.cn, dynamicad.kfc.com.cn, res.kfc.com.cn, api.mcd.cn, 3pp.starbucks.com.cn, wechat-api.i-xiaoma.com.cn, apiproxy.zuche.com, miniprogram.ishansong.com, ads.ishansong.com, minicap.caocaokeji.cn, applets.jtexpress.com.cn, ump.ems.com.cn, api.hellobike.coming, api.kuaidihelp.com, wxproj.seeyouyima.com, qapi.huolala.cn, appuser-static.huolala.cn, apis.alenable.com, suyun-user.daojia.com, adsoss.zhinengxiyifang.cn, api-marketing.zhinengxiyifang.cn, ads.zhinengxiyifang.cn, capis*.didapinche.com, conf.diditaxi.com.cn, ad.xiaotucc.com, mapi.xiaotucc.com, aag.enmonster.com, smarket.dian.so, file.dian.so, s.jiediankeji.com, wxs-weixin.sd.zhumanggroup.com, mobile-api.imlaidian.com, api.sodalife.xyz, hdgateway.zto.com, api.ulife.group, common.diditaxi.com.cn, webchatapp.fcbox.com, dsp.fcbox.com, supplier-api.imdada.cn, customer-app.sto.cn, sto-customer-app.oss-cn-shanghai.aliyuncs.co, res.hongyibo.com.cn, r2.gzyct.com, api.hellobike.com, dock.tenchii.com, fscdn.zto.com, tan.ipnas.ltd, 4thdimension.top, www.benbenfx.xyz, *.smkj33.top, tvapp.guilaile.cn, gz.gongzijx.com, d.syshhc.top, gjsx.vip, jt.jxjt888.top, *.tslt.xyz, g.syshhc.top, c.jxjt888.top, www.laoguikeji.cn, qj.bpojie.com, b.tslt.xyz, m.xgjyouhui.com, www.freeheikeji.cn, xcx.xianbaow.com, jabi.coding.net, iosoi.cn, d.smkj33.top, *.ddly666.top, a.jxjt888.top, lysl2020.com, www.i3zh.com, comic.321mh.com, uranus.sharedaka.com, wp3.lobdol.cn, wx.wxqqurl.cn, www.bbkj.work
|
||||
|
||||
# >>>>>>>>>>>>>>> ✅ 0 ✅ <<<<<<<<<<<<<<
|
||||
|
||||
|
||||
|
||||
# >>>>>>>>>>>>>>> ✅ 1 ✅ <<<<<<<<<<<<<<
|
||||
|
||||
|
||||
|
||||
# >>>>>>>>>>>>>>> ✅ 2 ✅ <<<<<<<<<<<<<<
|
||||
|
||||
|
||||
|
||||
# >>>>>>>>>>>>>>> ✅ 3 ✅ <<<<<<<<<<<<<<
|
||||
|
||||
|
||||
|
||||
# >>>>>>>>>>>>>>> ✅ 4 ✅ <<<<<<<<<<<<<<
|
||||
|
||||
|
||||
|
||||
# >>>>>>>>>>>>>>> ✅ 5 ✅ <<<<<<<<<<<<<<
|
||||
|
||||
|
||||
|
||||
# >>>>>>>>>>>>>>> ✅ 6 ✅ <<<<<<<<<<<<<<
|
||||
|
||||
|
||||
|
||||
# >>>>>>>>>>>>>>> ✅ 7 ✅ <<<<<<<<<<<<<<
|
||||
|
||||
|
||||
|
||||
# >>>>>>>>>>>>>>> ✅ 8 ✅ <<<<<<<<<<<<<<
|
||||
|
||||
|
||||
|
||||
# >>>>>>>>>>>>>>> ✅ 9 ✅ <<<<<<<<<<<<<<
|
||||
|
||||
|
||||
|
||||
# >>>>>>>>>>>>>>> ✅ A ✅ <<<<<<<<<<<<<<
|
||||
# > AShare
|
||||
# hostname = tan.ipnas.ltd
|
||||
^https:\/\/tan\.ipnas\.ltd\/wp-json\/wp\/v2 url script-response-body https://raw.githubusercontent.com/fmz200/wool_scripts/main/Scripts/applet.js
|
||||
|
||||
# > AppleAndroid
|
||||
# hostname = iosoi.cn
|
||||
# 弹框显示内容
|
||||
^https:\/\/iosoi\.cn\/wp-json\/wp\/v2\/posts/\d+ url script-response-body https://raw.githubusercontent.com/fmz200/wool_scripts/main/Scripts/applet.js
|
||||
# 辅助去除页面嵌入式式卡片广告
|
||||
^https:\/\/iosoi\.cn\/wp-content\/plugins url script-response-body https://raw.githubusercontent.com/fmz200/wool_scripts/main/Scripts/applet.js
|
||||
|
||||
# > APP基地
|
||||
# hostname = wx.wxqqurl.cn
|
||||
^https:\/\/wx\.wxqqurl\.cn\/wp-json\/watch-life-net\/v1\/posts url script-response-body https://raw.githubusercontent.com/fmz200/wool_scripts/main/Scripts/applet.js
|
||||
|
||||
# > 阿里云盘
|
||||
# hostname = member.alipan.com
|
||||
# 首页上方广告
|
||||
^https:\/\/member\.alipan\.com\/v2\/activity\/sign_in_info url reject-dict
|
||||
|
||||
|
||||
|
||||
# >>>>>>>>>>>>>>> ✅ B ✅ <<<<<<<<<<<<<<
|
||||
# > 必胜客 微信小程序净化
|
||||
# hostname = res.pizzahut.com
|
||||
;^https:\/\/res\.pizzahut\.com\.cn\/CRM url reject-dict
|
||||
|
||||
# > 不完全指北
|
||||
# hostname = 4thdimension.top
|
||||
^https:\/\/4thdimension\.top\/wp\-json\/watch\-life\-net\/v1\/posts url script-response-body https://raw.githubusercontent.com/fmz200/wool_scripts/main/Scripts/applet.js
|
||||
|
||||
# > 不背单词 净化
|
||||
# hostname = hwimg.beingfine.cn, learnywhere.cn
|
||||
^https:\/\/hwimg\.beingfine\.cn\/float_button url reject-dict
|
||||
^https:\/\/hwimg\.beingfine\.cn\/card url reject-dict
|
||||
^https:\/\/learnywhere\.cn\/api\/activity\/23\/423dsj\/inapp\/bb\/promote url reject-dict
|
||||
|
||||
|
||||
|
||||
# >>>>>>>>>>>>>>> ✅ C ✅ <<<<<<<<<<<<<<
|
||||
# > 曹操出行 微信小程序净化
|
||||
# hostname = minicap.caocaokeji.cn
|
||||
^https:\/\/minicap\.caocaokeji\.cn\/advert-bss\/pullAdvert url reject-dict
|
||||
|
||||
# > 乘车码 @jinlvei
|
||||
# hostname = ccmsupport-sz.tenpay.com
|
||||
^https:\/\/ccmsupport-sz\.tenpay\.com\/cgi-bin\/common\/ccm_page_element.cgi url reject
|
||||
|
||||
# > 茶颜悦色 微信小程序净化
|
||||
# hostname = miniapp.sexytea2013.com
|
||||
^https:\/\/miniapp\.sexytea2013\.com\/cms\/slot\/queryByCodes\?codes=INDEX_TOP_BANNER url script-response-body https://raw.githubusercontent.com/fmz200/wool_scripts/main/Scripts/cyys.js
|
||||
|
||||
# > 茶百道 微信小程序净化
|
||||
# hostname = cbd-gateway-service-applets.hualala.com
|
||||
^https:\/\/cbd-gateway-service-applets\.hualala\.com\/arch\/api\/banner\/QueryBannerImgList url reject-dict
|
||||
|
||||
# > COCO点单 微信小程序净化
|
||||
# hostname = coco-com.e.verystar.net
|
||||
^https:\/\/coco-com\.e\.verystar\.net\/v1\/home\/info url script-response-body https://raw.githubusercontent.com/fmz200/wool_scripts/main/Scripts/coco.js
|
||||
|
||||
|
||||
|
||||
# >>>>>>>>>>>>>>> ✅ D ✅ <<<<<<<<<<<<<<
|
||||
# > 达达快送 微信小程序净化
|
||||
# hostname = supplier-api.imdada.cn
|
||||
^https:\/\/supplier-api\.imdada\.cn\/fe\/public\/ad\/spot\?forwardServiceName=growth-activity url reject-dict
|
||||
|
||||
# > 滴滴出行 微信小程序个人中心净化 由TEXAS和豆豆提供
|
||||
# hostname = common.diditaxi.com.cn, conf.diditaxi.com.cn
|
||||
^https:\/\/common\.diditaxi\.com\.cn\/common\/v5 url script-response-body https://raw.githubusercontent.com/fmz200/wool_scripts/main/Scripts/didi/didiAds.js
|
||||
# > 滴滴打车 小程序净化 感谢#豆豆分享
|
||||
^https:\/\/conf\.diditaxi\.com\.cn\/homepage\/v1\/core url reject-dict
|
||||
|
||||
# > 嘀嗒出行 小程序净化 感谢#豆豆分享
|
||||
# hostname = capis*.didapinche.com
|
||||
^https:\/\/capis(-\d)?\.didapinche\.com\/adbase url reject
|
||||
|
||||
# > 石家庄公交乘车码 微信小程序净化
|
||||
# hostname =
|
||||
^https:\/\/wechat-api\.i-xiaoma\.com\.cn\/app\/v1\/bus\/wechat\/content url reject-dict
|
||||
|
||||
# > 电视盒子君
|
||||
# hostname = tvapp.guilaile.cn
|
||||
^https:\/\/tvapp\.guilaile\.cn\/wp\-json\/wp\/v2\/posts url script-response-body https://raw.githubusercontent.com/fmz200/wool_scripts/main/Scripts/applet.js
|
||||
|
||||
# > 德邦快递 微信小程序净化(删除Top轮播)
|
||||
# hostname = www.deppon.com
|
||||
^https:\/\/www\.deppon\.com\/gwapi\/memberService\/eco\/member\/grade\/commonInterface url reject-dict
|
||||
|
||||
|
||||
|
||||
# >>>>>>>>>>>>>>> ✅ E ✅ <<<<<<<<<<<<<<
|
||||
# > EMS 微信小程序净化 由TEXAS和豆豆提供
|
||||
^https:\/\/ump\.ems\.com\.cn\/new-generation-extend\/redis\/pageInfoByChannel url script-response-body https://raw.githubusercontent.com/fmz200/wool_scripts/main/Scripts/ems.js
|
||||
|
||||
|
||||
|
||||
# >>>>>>>>>>>>>>> ✅ F ✅ <<<<<<<<<<<<<<
|
||||
# > 丰巢 微信小程序净化
|
||||
^https:\/\/webchatapp\.fcbox\.com\/fcboxactivityweb\/api\/v2\/clientPage url reject-dict
|
||||
^https:\/\/dsp\.fcbox\.com url reject-dict
|
||||
|
||||
# > free黑科技
|
||||
^https:\/\/www\.freeheikeji\.cn\/wp\-json\/wp\/v2\/posts url script-response-body https://raw.githubusercontent.com/fmz200/wool_scripts/main/Scripts/applet.js
|
||||
|
||||
|
||||
|
||||
# >>>>>>>>>>>>>>> ✅ G ✅ <<<<<<<<<<<<<<
|
||||
# > 怪兽充电 微信小程序
|
||||
^https:\/\/aag\.enmonster\.com\/apa\/index\/advert\/skin url reject
|
||||
^https:\/\/aag\.enmonster\.com\/apa\/(index\/)?advert\/(skin|multi\/positions|demand\/home\/poster) url reject
|
||||
# 我的界面广告 支付宝小程序
|
||||
^https:\/\/aag\.enmonster\.com\/apa\/advert\/multi\/positions url reject
|
||||
# 我的界面广告 微信小程序
|
||||
^https:\/\/aag\.enmonster\.com\/apa\/advert\/demand\/home\/poster url reject
|
||||
|
||||
# > 广州地铁乘车码 微信小程序净化
|
||||
^https:\/\/apis\.alenable\.com\/mall\/v1\/api\/mall\/skin\/user\/get url reject-dict
|
||||
^https:\/\/apis\.alenable\.com\/ycx\/v1\/api\/adPut url reject-dict
|
||||
|
||||
# > 公子黑科技
|
||||
^https:\/\/gz\.gongzijx\.com\/wp\-json\/wp\/v2\/posts url script-response-body https://raw.githubusercontent.com/fmz200/wool_scripts/main/Scripts/applet.js
|
||||
|
||||
# > 搞机师兄
|
||||
^https:\/\/gjsx\.vip\/wp\-json\/wp\/v2\/posts url script-response-body https://raw.githubusercontent.com/fmz200/wool_scripts/main/Scripts/applet.js
|
||||
|
||||
# > 古茗 微信小程序净化
|
||||
^https:\/\/newton\.gumingnc\.com\/newton-buyer\/newton\/buyer\/(ump|touch|external\/front) url script-response-body https://raw.githubusercontent.com/fmz200/wool_scripts/main/Scripts/ming.js
|
||||
|
||||
|
||||
|
||||
# >>>>>>>>>>>>>>> ✅ H ✅ <<<<<<<<<<<<<<
|
||||
# > 花小猪打车 微信小程序净化 api.hongyibo.com.cn,
|
||||
;^https:\/\/api\.hongyibo\.com\.cn url reject-dict
|
||||
^https:\/\/res\.hongyibo\.com\.cn\/os\/gs\/resapi\/activity url reject-dict
|
||||
|
||||
# > 货拉拉 微信小程序净化
|
||||
^https:\/\/qapi\.huolala\.cn\/ads url reject-dict
|
||||
^https:\/\/appuser-static\.huolala\.cn\/imgs url reject-dict
|
||||
^https:\/\/qapi\.huolala\.cn\/home_new_user url reject-dict
|
||||
^https:\/\/qapi\.huolala\.cn\/get_service_list url reject-dict
|
||||
|
||||
# > 哈啰 微信小程序首页弹窗屏蔽
|
||||
^https:\/\/api\.hellobike\.com\/api\?adx url reject-dict
|
||||
|
||||
# > 华住会 微信小程序净化
|
||||
^https:\/\/api-fouth-mem\.huazhu\.com\/api\/rights\/bannerList url reject-dict
|
||||
|
||||
# > 黑科技软件
|
||||
^https:\/\/hkj178.com/wp-json/mp/v2/advert/wechat url reject-200
|
||||
^https:\/\/hkj178\.com\/wp\-json\/mp\/v2\/posts url script-response-body https://raw.githubusercontent.com/fmz200/wool_scripts/main/Scripts/applet.js
|
||||
|
||||
# > 黑科技软件源
|
||||
^https:\/\/qj\.bpojie\.com\/wp\-json\/wp\/v2\/posts url script-response-body https://raw.githubusercontent.com/fmz200/wool_scripts/main/Scripts/applet.js
|
||||
|
||||
# > 火箭软件库
|
||||
^https:\/\/jt\.jxjt888\.top\/wp\-json\/wp\/v2\/posts url script-response-body https://raw.githubusercontent.com/fmz200/wool_scripts/main/Scripts/applet.js
|
||||
|
||||
|
||||
|
||||
# >>>>>>>>>>>>>>> ✅ I ✅ <<<<<<<<<<<<<<
|
||||
|
||||
|
||||
|
||||
# >>>>>>>>>>>>>>> ✅ J ✅ <<<<<<<<<<<<<<
|
||||
# > 街电 微信小程序
|
||||
^https:\/\/s\.jiediankeji\.com\/adv url reject-dict
|
||||
|
||||
# > 极兔快递 微信小程序净化
|
||||
^https:\/\/applets\.jtexpress\.com\.cn url reject-dict
|
||||
|
||||
# > 锦江酒店 微信小程序净化
|
||||
^https:\/\/wxapp\.bestwehotel\.com\/gw3\/app-mini\/trip-hotel-banner\/activity\/getActivityInfo url reject-dict
|
||||
|
||||
|
||||
|
||||
# >>>>>>>>>>>>>>> ✅ K ✅ <<<<<<<<<<<<<<
|
||||
# > 肯德基 微信小程序净化
|
||||
^https:\/\/orders\.kfc\.com\.cn\/preorder-portal\/api\/v2\/coupon url reject-dict
|
||||
^https:\/\/dynamicad\.kfc\.com\.cn\/api url reject-dict
|
||||
^https:\/\/res\.kfc\.com\.cn\/CRM\/kfcad\/custom_v2\/wxapp url reject-dict
|
||||
^https:\/\/orders\.kfc\.com\.cn\/preorder-portal\/api\/v2\/activity url reject-dict
|
||||
|
||||
# > 快狗打车搬家 微信小程序净化
|
||||
^https:\/\/suyun-guest\.daojia\.com\/api\/kuaigou\/banjia\/review url reject-dict
|
||||
|
||||
# > 科技窝
|
||||
^https:\/\/www\.benbenfx\.xyz\/wp\-json\/wp\/v2\/posts url script-response-body https://raw.githubusercontent.com/fmz200/wool_scripts/main/Scripts/applet.js
|
||||
^https:\/\/www\.bbkj\.work\/wp-json\/watch-life-net\/v1\/posts url script-response-body https://raw.githubusercontent.com/fmz200/wool_scripts/main/Scripts/applet.js
|
||||
|
||||
|
||||
# >>>>>>>>>>>>>>> ✅ L ✅ <<<<<<<<<<<<<<
|
||||
# > 来电 小程序净化
|
||||
^https:\/\/mobile-api\.imlaidian\.com\/api\/args url reject-dict
|
||||
|
||||
# > 罗森点点 微信小程序净化
|
||||
# ^https:\/\/lawsonapi\.yorentown\.com\/area\/sh-lawson\/app\/v1\/mina\/systemSetting url reject-dict
|
||||
^https:\/\/plt\.yorentown\.com\/pltapp\/v1\/banner url reject-dict
|
||||
^https:\/\/lawsonapi\.yorentown\.com\/area\/sh-lawson\/app\/v1\/ url script-response-body https://raw.githubusercontent.com/fmz200/wool_scripts/main/Scripts/lawson.js
|
||||
^https:\/\/lawsonapi\.yorentown\.com\/portal\/app\/globalLaunch\/listAdvert url script-response-body https://raw.githubusercontent.com/fmz200/wool_scripts/main/Scripts/lawson.js
|
||||
|
||||
# > 老乡鸡 微信小程序净化
|
||||
^https:\/\/member\.lxjchina\.com\.cn\/mini-server\/home\/page\/banner url reject-dict
|
||||
|
||||
# > 老胡群英会
|
||||
^https:\/\/g\.syshhc\.top\/wp\-json\/wp\/v2\/posts url script-response-body https://raw.githubusercontent.com/fmz200/wool_scripts/main/Scripts/applet.js
|
||||
|
||||
# > 老鬼黑科技
|
||||
^https:\/\/www\.laoguikeji\.cn\/wp\-json\/wp\/v2\/posts url script-response-body https://raw.githubusercontent.com/fmz200/wool_scripts/main/Scripts/applet.js
|
||||
|
||||
|
||||
|
||||
# >>>>>>>>>>>>>>> ✅ M ✅ <<<<<<<<<<<<<<
|
||||
# > 美柚 微信小程序净化
|
||||
^https:\/\/wxproj\.seeyouyima\.com\/data\/today_tips url reject-dict
|
||||
|
||||
# > 麦当劳 微信小程序净化
|
||||
^https:\/\/api\.mcd\.cn\/bff\/portal\/home\/hotActivity url reject-dict
|
||||
|
||||
# > 蜜雪冰城 微信小程序净化
|
||||
^https:\/\/mxsa\.mxbc\.net\/api\/v1\/adinfo\/adplace\/query url reject-dict
|
||||
|
||||
# > Manner 微信小程序净化(去除首页轮播图以及进入小程序弹窗)
|
||||
^https:\/\/triangle\.wearemanner\.com\/mp-api\/v1\/ads url reject-dict
|
||||
|
||||
# > 漫画台 Lite
|
||||
^https?:\/\/comic\.321mh\.com\/app_api\/v\d\/getcomicinfo_body url script-response-body https://raw.githubusercontent.com/fmz200/wool_scripts/main/Scripts/manhuatailite.js
|
||||
|
||||
# > 猫眼电影小程序
|
||||
# 弹窗广告+横幅广告 #主机名ad.maoyan.com
|
||||
^https:\/\/ad\.maoyan\.com\/api\/position\/detail url reject-dict
|
||||
# 电竞赛事+热门赛事 #主机名wx.maoyan.com
|
||||
^https:\/\/wx\.maoyan\.com\/maoyansh\/api\/mobile\/(hotMatchList|eSportsIps) url reject-dict
|
||||
# 猫眼放映厅 #主机名vod-movie.maoyan.com
|
||||
^https:\/\/vod-movie\.maoyan\.com\/vod\/video\/onlineMovies\.json url reject-dict
|
||||
# 精彩演出
|
||||
^https:\/\/wx\.maoyan\.com\/maoyansh\/myshow\/ajax\/movie\/wonderShow url reject-dict
|
||||
# 七日精选
|
||||
^https:\/\/wx\.maoyan\.com\/maoyansh\/myshow\/ajax\/performances\/calendar\/0 url reject-dict
|
||||
# 今日必抢
|
||||
^https:\/\/wx\.maoyan\.com\/maoyansh\/myshow\/ajax\/performances\/rob\/main url reject-dict
|
||||
# 大咖新动态
|
||||
^https:\/\/wx\.maoyan\.com\/maoyansh\/myshow\/ajax\/celebrityBasicList\/query url reject-dict
|
||||
# 为你推荐
|
||||
^https:\/\/wx\.maoyan\.com\/maoyansh\/myshow\/ajax\/recommend\/performances url reject-dict
|
||||
# 首页底部推荐 #主机名api.maoyan.com
|
||||
^https:\/\/api\.maoyan\.com\/sns\/common\/feed\/channel\/v2\/list\.json url reject-dict
|
||||
# 演出页面全部拦截
|
||||
^https:\/\/wx\.maoyan\.com\/maoyansh\/myshow\/ajax\/ad\/detail url reject-dict
|
||||
|
||||
|
||||
# >>>>>>>>>>>>>>> ✅ N ✅ <<<<<<<<<<<<<<
|
||||
# > 奈雪 微信小程序净化
|
||||
^https:\/\/tm-api\.pin-dao\.cn\/home\/api\/index\/activeConfig\/v2 url reject-dict
|
||||
^https:\/\/tm-api\.pin-dao\.cn\/home\/api\/resource\/config\/homeBannerNodes url reject-dict
|
||||
|
||||
# > 挪瓦咖啡 微信小程序净化
|
||||
^https:\/\/webapi\.qmai\.cn\/web\/catering\/design\/homePage-Config url script-response-body https://raw.githubusercontent.com/fmz200/wool_scripts/main/Scripts/kff.js
|
||||
^https:\/\/webapi\.qmai\.cn\/web\/catering\/advertising\/ad url reject-dict
|
||||
^https:\/\/images\.qmai\.cn\/s214925\/2023 url reject-dict
|
||||
|
||||
|
||||
|
||||
# >>>>>>>>>>>>>>> ✅ O ✅ <<<<<<<<<<<<<<
|
||||
|
||||
|
||||
|
||||
# >>>>>>>>>>>>>>> ✅ P ✅ <<<<<<<<<<<<<<
|
||||
|
||||
|
||||
|
||||
# >>>>>>>>>>>>>>> ✅ Q ✅ <<<<<<<<<<<<<<
|
||||
# > 屈臣氏 微信小程序开屏(或许APP也可以干掉)
|
||||
^https:\/\/mystore-gw\.watsonsvip\.com\.cn\/gfu\/popup\/advert\/launch url script-response-body https://raw.githubusercontent.com/fmz200/wool_scripts/main/Scripts/watsons.js
|
||||
|
||||
# > 青桔 微信小程序净化
|
||||
^https:\/\/htwkop\.xiaojukeji\.com\/gateway\?api=cms\.htw\.delivery url reject-dict
|
||||
^https:\/\/htwkop\.xiaojukeji\.com\/gateway\?api=hm\.fa\.combineHomepageInfo url reject-dict
|
||||
^https:\/\/htwkop\.xiaojukeji\.com\/gateway\?api=hm\.fa\.mallRecommend url reject-dict
|
||||
^https:\/\/htwkop\.xiaojukeji\.com\/gateway\?api=hm\.fa\.homeConfig url script-response-body https://raw.githubusercontent.com/fmz200/wool_scripts/main/Scripts/qingju.js
|
||||
|
||||
|
||||
# > 全家微会员 微信小程序净化
|
||||
^https:\/\/minifm\.maxxipoint\.com\/banner\/list url script-response-body https://raw.githubusercontent.com/fmz200/wool_scripts/main/Scripts/FamilyMart.js
|
||||
|
||||
|
||||
|
||||
# >>>>>>>>>>>>>>> ✅ R ✅ <<<<<<<<<<<<<<
|
||||
|
||||
|
||||
|
||||
# >>>>>>>>>>>>>>> ✅ S ✅ <<<<<<<<<<<<<<
|
||||
# > 申通快递 微信小程序净化
|
||||
^https:\/\/customer-app\.sto\.cn\/api\/app\/banner\/banner url reject-dict
|
||||
^https:\/\/sto-customer-app\.oss-cn-shanghai\.aliyuncs\.com\/images url reject-dict
|
||||
|
||||
# > 苏打校园APP 净化(需要卸载重装)@TEXAS提供
|
||||
^https:\/\/api\.sodalife\.xyz\/v1\/posters\?location=SODA_APP%3AHOME%3ATOP url script-response-body https://raw.githubusercontent.com/fmz200/wool_scripts/main/Scripts/soda.js
|
||||
^https:\/\/api\.sodalife\.xyz\/v1\/posters\?location=SODA_APP%3AHOME%3ABOTTOM url reject-dict
|
||||
^https:\/\/api\.sodalife\.xyz\/v1\/posters\?location=SODA_APP%3AHOME%3ACENTER url reject-dict
|
||||
^https:\/\/api\.sodalife\.xyz\/v1\/posters\?location=SODA_APP%3AMINE%3ABOTTOM url reject-dict
|
||||
^https:\/\/api\.sodalife\.xyz\/v1\/goods url reject-dict
|
||||
^https:\/\/api\.sodalife\.xyz\/v1\/posters\?location=SODA_APP%3AREWARDS%3ACENTER url reject-dict
|
||||
|
||||
# > 搜电充电 微信小程序
|
||||
^https:\/\/wxs-weixin\.sd\.zhumanggroup\.com\/api\/v2\/ad url reject-dict
|
||||
|
||||
# > 神州租车 微信小程序净化
|
||||
^https:\/\/apiproxy\.zuche\.com\/resource\/carrctapi\/home\/marketing url reject-dict
|
||||
^https:\/\/apiproxy\.zuche\.com\/resource\/carrctapi\/home\/page\/advertising url reject-dict
|
||||
|
||||
# > 闪送 微信小程序净化
|
||||
^https:\/\/miniprogram\.ishansong\.com\/cms\/faq\/query url reject-dict
|
||||
^https:\/\/ads\.ishansong\.com\/advert url reject-dict
|
||||
|
||||
# > 首旅如家 微信小程序净化
|
||||
^https:\/\/wx\.bthhotels\.com\/miniapp\/weixin\/v1\/home\/index_banner url reject-dict
|
||||
^https:\/\/app\.homeinns\.com\/api\/v6\/indexs url reject-dict
|
||||
^https:\/\/app\.homeinns\.com\/api\/v5\/local url reject-dict
|
||||
^https:\/\/app\.homeinns\.com\/api\/v5\/index url reject-dict
|
||||
|
||||
# > 松果出行 @keywos
|
||||
^https:\/\/api\.songguo7\.com\/(\w{3})?mp\/v2\/misc\/(toast|user_operate_info) url reject-dict
|
||||
|
||||
# > 森茂小苑
|
||||
^https:\/\/[a-z]+\.smkj33\.top\/wp\-json\/wp\/v2\/posts url script-response-body https://raw.githubusercontent.com/fmz200/wool_scripts/main/Scripts/applet.js
|
||||
^https:\/\/d\.smkj33\.top\/wp\-json\/wp\/v2\/posts url script-response-body https://raw.githubusercontent.com/fmz200/wool_scripts/main/Scripts/applet.js
|
||||
|
||||
# > 世颜说
|
||||
^https:\/\/d\.syshhc\.top\/wp\-json\/wp\/v2\/posts url script-response-body https://raw.githubusercontent.com/fmz200/wool_scripts/main/Scripts/applet.js
|
||||
|
||||
# > 酸鸡汤、老爷花苑、御花园
|
||||
^https:\/\/[a-z]+\.ddly666\.top\/wp\-json\/wp\/v2\/posts url script-response-body https://raw.githubusercontent.com/fmz200/wool_scripts/main/Scripts/applet.js
|
||||
|
||||
# > 搜罗好货
|
||||
^https:\/\/www\.i3zh\.com\/wp\-json\/wp\/v2\/posts url script-response-body https://raw.githubusercontent.com/fmz200/wool_scripts/main/Scripts/applet.js
|
||||
|
||||
# > 首汽约车 微信小程序净化
|
||||
^https:\/\/gw-passenger-wap\.01zhuanche\.com\/gw-passenger-wap\/zhuanche-passenger-token\/commonSkipToken\/common\/getAdList url reject-dict
|
||||
|
||||
|
||||
|
||||
# >>>>>>>>>>>>>>> ✅ T ✅ <<<<<<<<<<<<<<
|
||||
# > 天书乱谈
|
||||
^https:\/\/[a-z]+\.tslt\.xyz\/wp\-json\/wp\/v2\/posts url script-response-body https://raw.githubusercontent.com/fmz200/wool_scripts/main/Scripts/applet.js
|
||||
^https:\/\/b\.tslt\.xyz\/wp\-json\/wp\/v2\/posts url script-response-body https://raw.githubusercontent.com/fmz200/wool_scripts/main/Scripts/applet.js
|
||||
|
||||
# > 天泽百宝箱
|
||||
^https:\/\/(c|a)\.jxjt888\.top\/wp\-json\/wp\/v2\/posts url script-response-body https://raw.githubusercontent.com/fmz200/wool_scripts/main/Scripts/applet.js
|
||||
|
||||
# > 图层黑科技
|
||||
^https:\/\/m\.xgjyouhui\.com\/wp\-json\/wp\/v2\/posts url script-response-body https://raw.githubusercontent.com/fmz200/wool_scripts/main/Scripts/applet.js
|
||||
|
||||
# > T3出行 微信小程序净化
|
||||
^https:\/\/passenger\.t3go\.cn\/(solution\-|common\-)?(passenger\-)?(activity\-|app\-)?api\/notoken\/(trip\/)?api\/(home\/|common\/)?(v[1-3]\/)?(ad\/getNegativescreen|solution\/passenger\/open\/getHomeMenu|leftmenu|getHomeInfoGlobal) url script-response-body https://raw.githubusercontent.com/fmz200/wool_scripts/main/Scripts/T3.js
|
||||
^https:\/\/passenger\.t3go\.cn\/passenger-activity-api\/notoken\/api\/v1\/resource\/getSource url reject-dict
|
||||
|
||||
|
||||
|
||||
|
||||
# >>>>>>>>>>>>>>> ✅ U ✅ <<<<<<<<<<<<<<
|
||||
# > U净 APP净化 感谢#豆豆分享
|
||||
^https:\/\/adsoss\.zhinengxiyifang\.cn\/ads url reject
|
||||
^https?:\/\/ads\.zhinengxiyifang\.cn\/api\/v1\.1\/ads\/* url reject-200
|
||||
|
||||
|
||||
|
||||
# >>>>>>>>>>>>>>> ✅ V ✅ <<<<<<<<<<<<<<
|
||||
|
||||
|
||||
|
||||
# >>>>>>>>>>>>>>> ✅ W ✅ <<<<<<<<<<<<<<
|
||||
# > 微快递 微信小程序净化
|
||||
^https:\/\/api\.kuaidihelp\.com\/g_order_core\/v2\/mina\/User\/getBannerList url reject-dict
|
||||
|
||||
|
||||
|
||||
# >>>>>>>>>>>>>>> ✅ X ✅ <<<<<<<<<<<<<<
|
||||
# > 小电充电 微信小程序
|
||||
^https:\/\/smarket\.dian\.so url reject-dict
|
||||
^https:\/\/file\.dian\.so\/c\/leto url reject-dict
|
||||
|
||||
# > 小兔充充 小程序净化 感谢#豆豆分享
|
||||
^https:\/\/ad\.xiaotucc\.com\/advert url reject
|
||||
^https:\/\/mapi\.xiaotucc\.com\/(mall\/main|main_page\/index\/getActivity) url script-response-body https://raw.githubusercontent.com/fmz200/wool_scripts/main/Scripts/xiaotucc.js
|
||||
|
||||
# > 小纸箱助手
|
||||
^https:\/\/xcx\.xianbaow\.com\/wp\-json\/wp\/v2\/posts url script-response-body https://raw.githubusercontent.com/fmz200/wool_scripts/main/Scripts/applet.js
|
||||
|
||||
# > 小野分享
|
||||
^https:\/\/lysl2020\.com\/wp\-json\/wp\/v2\/posts url script-response-body https://raw.githubusercontent.com/fmz200/wool_scripts/main/Scripts/applet.js
|
||||
|
||||
# > 小打卡
|
||||
^https?:\/\/uranus\.sharedaka\.com\/api\/v3\/user\/info\/get url script-response-body https://raw.githubusercontent.com/fmz200/wool_scripts/main/Scripts/xiaodaka.js
|
||||
|
||||
# > 星巴克 微信小程序净化
|
||||
^https:\/\/3pp\.starbucks\.com\.cn\/wxmem\/popup url reject-dict
|
||||
^https:\/\/3pp\.starbucks\.com\.cn\/wxmem\/index\/banner url reject-dict
|
||||
^https:\/\/3pp\.starbucks\.com\.cn\/wxmem\/index\/global url reject-dict
|
||||
|
||||
# > 喜茶 微信小程序净化
|
||||
^https:\/\/go\.heytea\.com\/api\/service-portal\/vip url script-response-body https://raw.githubusercontent.com/fmz200/wool_scripts/main/Scripts/heytea.js
|
||||
|
||||
# > 搜罗好货
|
||||
^https?:\/\/wp3\.lobdol\.cn\/wp-json\/wp\/v2\/posts url script-response-body https://raw.githubusercontent.com/fmz200/wool_scripts/main/Scripts/applet.js
|
||||
|
||||
# > 享道出行 微信小程序净化
|
||||
^https:\/\/passengerapi\.saicmobility\.com\/(ad\/requestAd|pay\/v1\/queryOpenedCouponPackages) url reject-dict
|
||||
|
||||
# > 携程旅行 微信小程序净化
|
||||
^https:\/\/m\.ctrip\.com\/restapi\/soa2\/13916\/tripAds url reject-dict
|
||||
^https:\/\/m\.ctrip\.com\/restapi\/soa2\/12673\/queryWeChatHotEvent url reject-dict
|
||||
^https:\/\/m\.ctrip\.com\/restapi\/soa2\/13012\/getWaterflowInfo url script-response-body https://raw.githubusercontent.com/fmz200/wool_scripts/main/Scripts/T3.js
|
||||
|
||||
|
||||
|
||||
# >>>>>>>>>>>>>>> ✅ Y ✅ <<<<<<<<<<<<<<
|
||||
# > 悠洗APP 微信小程序净化 由TEXAS和豆豆提供
|
||||
^https:\/\/api\.ulife\.group\/signintask\/adServing url reject-dict
|
||||
^https:\/\/api\.ulife\.group\/auth\/account\/getUpgradeStrategy url reject-dict
|
||||
^https:\/\/api\.ulife\.group\/market\/frontEntrance\/getThirdAdvertising\?displayPort=1&type=15 url reject-dict
|
||||
^https:\/\/api\.ulife\.group\/market\/memberCard\/listMemberCard\?isShowSecondaryCard=1 url reject-dict
|
||||
^https:\/\/api\.ulife\.group\/auth\/account\/entrance url reject-dict
|
||||
^https:\/\/api\.ulife\.group\/market\/homeIconDetail\/list\/v7 url script-response-body https://raw.githubusercontent.com/fmz200/wool_scripts/main/Scripts/yx.js
|
||||
|
||||
# > 一点点 微信小程序净化
|
||||
^https:\/\/cappapi\.alittle-tea\.com\/open\?method=catering\.set\.ad url script-response-body https://raw.githubusercontent.com/fmz200/wool_scripts/main/Scripts/alittle-tea.js
|
||||
^https:\/\/alittle-tea\.oss-cn-shanghai\.aliyuncs\.com\/images\/platform\/alittle url reject-dict
|
||||
|
||||
|
||||
|
||||
# >>>>>>>>>>>>>>> ✅ Z ✅ <<<<<<<<<<<<<<
|
||||
# > 中通快递 微信小程序净化
|
||||
^https:\/\/hdgateway\.zto\.com\/getApolloConfig url reject-dict
|
||||
^https:\/\/hdgateway\.zto\.com\/track url reject-dict
|
||||
^https:\/\/hdgateway\.zto\.com\/getAdInfo url reject-dict
|
||||
^https:\/\/hdgateway\.zto\.com\/listJumperShow url reject-dict
|
||||
|
||||
# > 掌上公交
|
||||
^https?:\/\/wx\.mygolbs\.com\/WxBusServer\/ApiData\.do url script-response-body https://raw.githubusercontent.com/fmz200/wool_scripts/main/Scripts/zhangshanggongjiao.js
|
||||
|
||||
# > 扎比科技资源箱 弹框显示内容
|
||||
^https:\/\/jabi\.coding\.net\/p\/xcx\/d\/xcx\/git\/raw\/master\/jabikj\.json url script-response-body https://raw.githubusercontent.com/fmz200/wool_scripts/main/Scripts/jabi.js
|
||||
546
QuantumultX/rewrite/cookies.snippet
Normal file
546
QuantumultX/rewrite/cookies.snippet
Normal file
@ -0,0 +1,546 @@
|
||||
#!name=获取cookie&token合集
|
||||
#!desc=顺序尽量放到上面,获取到以后禁用该配置避免重复大量的MITM
|
||||
#!author=奶思
|
||||
#!homepage=https://github.com/fmz200/wool_scripts
|
||||
#!icon=https://raw.githubusercontent.com/fmz200/wool_scripts/main/icons/others/cookie.png
|
||||
#!raw-url=https://github.com/fmz200/wool_scripts/raw/main/QuantumultX/rewrite/cookies.snippet
|
||||
#!tg-group=https://t.me/lanjieguanggao
|
||||
#!category=奶思的模块
|
||||
#!tag = 奶思
|
||||
#!system = iOS, iPadOS
|
||||
#!system_version =
|
||||
#!loon_version =
|
||||
#!date=2024-11-10 15:00:00
|
||||
#############################################
|
||||
|
||||
|
||||
# 去重后的hostname,将对以下域名进行MITM(MAN-IN-THE-MIDDLE:中间人攻击)
|
||||
hostname = mobile-consumer-sapp.chery.cn, xxyx-client-api.xiaoxiaoyouxuan.com, yunbusiness.ccb.com, home.m.jd.com, api.m.jd.com, ms.jr.jd.com, jdread-api.jd.com, me-api.jd.com, wq.jd.com, daojia.jd.com, testflight.apple.com, farm.api.ddxq.mobi, user-api.smzdm.com, luka-graphql.ling.cn, fmapp.chinafamilymart.com.cn, apph5.manmanbuy.com, www.hifini.com, cauth.pupuapi.com, qqpet.jwetech.com, rewards.bing.com, auth.alipan.com, auth.aliyundrive.com, draw.jdfcloud.com, api.momosyb.com, passport.iqiyi.com, account.huami.com, api.dongqiudi.com, act.10010.com, wox2019.woxshare.com, www.52pojie.cn, api.prize.qq.com, eventv3.reader.qq.com, api.tuhu.cn, gameapi.hellobike.com, xiaoshuo.qm989.com, passport.biligame.com, cxdng.cpic.com.cn, teacherapi.zmlearn.com, luckman.suning.com, api.dushu.io, api.xiaoheihe.cn, api.inews.qq.com, zt.wps.cn, m.client.10010.com, m.ctrp.com, activity.m.duiba.com.cn, as.xiaojukeji.com, www.maomicd.com, h5.youzan.com, node.kg.qq.com, manga.bilibili.com, ios.baertt.com, www.mydigit.cn, proxy.vac.qq.com, wx-mini.pagoda.com.cn, *.acfun.cn, *.rrys2019.com, *.bilibili.com, club.yili.com, marketappapi.biyao.com, commontgw6.reader.qq.com, *.ctrp.com, *.csdn.net, www.duokan.com, ngabbs.com, note.youdao.com, h5.bianlifeng.com, kd.youth.cn, activity-1.m.duiba.com.cn, cloud.umetrip.com, hongbao.youzikuaibao.com, air.tb.ele.me, *.xmcimg.com, m.ctrip.com, user.qunar.com, mcs-mimp-web.sf-express.com, tb.ele.me, dominos0724.shjimang.com, h5.ele.me, my.ruanmei.com, promotion.waimai.meituan.com, www.2xtj7.cn, mall.oclean.com, apk.tw, user-api-prd-mx.wandafilm.com, *.youth.cn, wq.02gk.com, iphone.myzaker.com, apiwz.midukanshu.com, api.1sapp.com, nebula.kuaishou.com, yuba.douyu.com, *.ximalaya.com, *.zhuishushenqi.com, sf-integral-sign-in.weixinjia.net, epassport.diditaxi.com.cn, *.m.163.com, e.dlife.cn, open.e.189.cn, e.189.cn, wapside.189.cn, api.kkmh.com, *.rr.tv, gameapi.suning.com, *.you.163.com, app.oscaches.com, exp.angelalign.com, getconfig-globalapi.zymk.cn, mall.meituan.com, game.xiaojukeji.com, api.infzm.com, *.v2ex.com, *.rrys2020.com, app.nio.com, music.163.com, studygolang.com, kandian.wkandian.com, ifac*.iqiyi.com, ug-fission.kuaishou.com, passport.suning.com, tncj.hortorgames.com, credits.bz.mgtv.com, c.tieba.baidu.com, api.sdbao.com, 113.96.156.178, wxavip-up.ezrpro.cn, *.video.qq.com, j1.pupuapi.com, tieba.baidu.com, wx.17u.cn, www.baimaa.com, frodo.douban.com, m-bean.kaola.com, 110.43.90.61, newsapi.sina.cn, i.meituan.com, wxprdapplet.gac-nio.com, icbc1.wlphp.com:8444, ios-fenqu11.lxsjgo.com, sapi.beingfine.cn, *.feng.com, www.hnmiaosu.cc, clientaccess.10086.cn, mobile.app.autohome.com.cn, ph0001.hezyq.com, api.everphoto.cn, api-takumi.mihoyo.com, sports.lifesense.com, superapp.kiwa-tech.com, api.weather.com, sign.suning.com, qqpet.jwetech.com, m.elong.com, webapi.qmai.cn, mwegame.qq.com, activity.m.kuaishou.com, mobwsa.ximalaya.com, proapi.115.com, youhui.95516.com, www.xiaodouzhuan.cn, *.smzdm.com, app.ymatou.com, operation-api.jimistore.com, www.flyert.com.cn, api.cashtoutiao.com, choujiang-server.deering.cn, maicai.api.ddxq.mobi, minigame.zijieapi.com, appsmall.rtmap.com, m.gdoil.cn, *.weibo.cn, *.weibo.com, weibo.com, ios.zmzapi.com
|
||||
|
||||
|
||||
# >>>>>>>>>>>>>>> ✅ 0 ✅ <<<<<<<<<<<<<<
|
||||
|
||||
|
||||
|
||||
|
||||
# >>>>>>>>>>>>>>> ✅ 1 ✅ <<<<<<<<<<<<<<
|
||||
|
||||
|
||||
|
||||
|
||||
# >>>>>>>>>>>>>>> ✅ 2 ✅ <<<<<<<<<<<<<<
|
||||
|
||||
|
||||
|
||||
|
||||
# >>>>>>>>>>>>>>> ✅ 3 ✅ <<<<<<<<<<<<<<
|
||||
|
||||
|
||||
|
||||
|
||||
# >>>>>>>>>>>>>>> ✅ 4 ✅ <<<<<<<<<<<<<<
|
||||
|
||||
|
||||
|
||||
|
||||
# >>>>>>>>>>>>>>> ✅ 5 ✅ <<<<<<<<<<<<<<
|
||||
|
||||
|
||||
|
||||
|
||||
# >>>>>>>>>>>>>>> ✅ 6 ✅ <<<<<<<<<<<<<<
|
||||
|
||||
|
||||
|
||||
|
||||
# >>>>>>>>>>>>>>> ✅ 7 ✅ <<<<<<<<<<<<<<
|
||||
|
||||
|
||||
|
||||
|
||||
# >>>>>>>>>>>>>>> ✅ 8 ✅ <<<<<<<<<<<<<<
|
||||
|
||||
|
||||
|
||||
|
||||
# >>>>>>>>>>>>>>> ✅ 9 ✅ <<<<<<<<<<<<<<
|
||||
|
||||
|
||||
|
||||
|
||||
# >>>>>>>>>>>>>>> ✅ A ✅ <<<<<<<<<<<<<<
|
||||
# > AcFun
|
||||
# hostname =
|
||||
^https:\/\/api\-new\.app\.acfun\.cn\/rest\/app\/user\/personalInfo url script-request-header https://raw.githubusercontent.com/chavyleung/scripts/master/acfun/acfun.cookie.js
|
||||
|
||||
# > APK.TW
|
||||
# hostname =
|
||||
^https://apk.tw\/member.php(.*?)action=login url script-request-body https://raw.githubusercontent.com/chavyleung/scripts/master/apktw/apktw.cookie.js
|
||||
|
||||
# > 阿里云盘任务
|
||||
# hostname = auth.alipan.com, auth.aliyundrive.com
|
||||
^https:\/\/(auth|aliyundrive)\.alipan\.com\/v2\/account\/token url script-request-body https://gist.githubusercontent.com/Sliverkiss/33800a98dcd029ba09f8b6fc6f0f5162/raw/aliyun.js
|
||||
# 阿里云盘签到cookie
|
||||
^https:\/\/auth.aliyundrive.com\/v2\/account\/token url script-response-body https://raw.githubusercontent.com/lowking/Scripts/master/ali/aliYunPanCheckIn.js
|
||||
|
||||
# > 爱奇艺 cookie
|
||||
# hostname =
|
||||
^https:\/\/passport\.iqiyi\.com\/apis\/user\/ url script-request-header https://raw.githubusercontent.com/NobyDa/Script/master/iQIYI-DailyBonus/iQIYI.js
|
||||
|
||||
|
||||
|
||||
|
||||
# >>>>>>>>>>>>>>> ✅ B ✅ <<<<<<<<<<<<<<
|
||||
# > bing获取积分cookie
|
||||
# hostname =
|
||||
^https:\/\/rewards\.bing\.com url script-request-header https://raw.githubusercontent.com/lowking/Scripts/master/bing/bingPoint.js
|
||||
|
||||
# > 百度贴吧 cookie
|
||||
# hostname =
|
||||
https?:\/\/(c\.tieba\.baidu\.com|180\.97\.\d+\.\d+)\/c\/s\/login url script-request-header https://raw.githubusercontent.com/NobyDa/Script/master/BDTieBa-DailyBonus/TieBa.js
|
||||
# 贴吧 获取cookie1
|
||||
https?:\/\/(c\.tieba\.baidu\.com|180\.97\.\d+\.\d+)\/c\/s\/login url script-request-header https://raw.githubusercontent.com/blackmatrix7/ios_rule_script/master/script/tieba/tieba_signin.js
|
||||
# 贴吧_获取cookie2
|
||||
^https?:\/\/c\.tieba\.baidu\.com\/c\/s\/channelIconConfig url script-request-header https://raw.githubusercontent.com/blackmatrix7/ios_rule_script/master/script/tieba/tieba_signin.js
|
||||
# 贴吧_获取cookie3
|
||||
^https?:\/\/tiebac\.baidu\.com\/c\/u\/follow\/getFoldedMessageUserInfo url script-request-header https://raw.githubusercontent.com/blackmatrix7/ios_rule_script/master/script/tieba/tieba_signin.js
|
||||
|
||||
# > 百词斩
|
||||
# hostname =
|
||||
;^https://group\.baicizhan\.com/group/rewards? url script-request-header https://raw.githubusercontent.com/chavyleung/scripts/master/bcz/bcz.cookie.js
|
||||
|
||||
# > 哔哩哔哩漫画
|
||||
# hostname =
|
||||
^https:\/\/passport\.biligame\.com\/api\/login\/sso.+?version%22%3A%22(3|4|5) url script-request-header https://raw.githubusercontent.com/NobyDa/Script/master/Bilibili-DailyBonus/Manga.js
|
||||
# 哔哩哔哩大会员特权领取cookie
|
||||
https:\/\/api.bilibili.com\/x\/vip\/privilege\/receive url script-request-header https://raw.githubusercontent.com/lowking/Scripts/master/bilibili/privilegeReceive.js
|
||||
# 哔哩哔哩番剧监控cookie
|
||||
https?:\/\/app.bilibili.com\/x\/v2\/space\/bangumi url script-request-header https://raw.githubusercontent.com/lowking/Scripts/master/bilibili/bangumiMonitor.js
|
||||
# bilibili
|
||||
^https:\/\/(www|live)\.bilibili\.com\/?.? url script-request-header https://raw.githubusercontent.com/chavyleung/scripts/master/bilibili/bilibili.cookie.js
|
||||
|
||||
|
||||
|
||||
# >>>>>>>>>>>>>>> ✅ C ✅ <<<<<<<<<<<<<<
|
||||
# > CSDN
|
||||
# hostname =
|
||||
^https:\/\/passport.csdn.net\/v2\/api\/app\/login\/checkAndRefreshToken url script-request-header https://raw.githubusercontent.com/chavyleung/scripts/master/csdn/csdn.cookie.js
|
||||
^https:\/\/gw.csdn.net\/mini-app\/v2\/lucky_draw\/login\/sign_in\? url script-request-header https://raw.githubusercontent.com/chavyleung/scripts/master/csdn/csdn.cookie.js
|
||||
|
||||
# > 彩云
|
||||
# hostname =
|
||||
^https?:\/\/api.weather\.com url script-request-header https://raw.githubusercontent.com/Peng-YM/QuanX/master/Tasks/caiyun.js
|
||||
|
||||
|
||||
|
||||
|
||||
# >>>>>>>>>>>>>>> ✅ D ✅ <<<<<<<<<<<<<<
|
||||
# > 滴滴出行-滴滴果园 获取token
|
||||
# hostname = game.xiaojukeji.com
|
||||
# tips = ddgyToken: 必填,账号token,多账号换行或者@隔开,格式uid&token。uid不可随便填,主要是方便区分账号用
|
||||
^https?:\/\/game\.xiaojukeji\.com\/api\/game\/plant\/newWatering\? url script-request-body https://raw.githubusercontent.com/fmz200/wool_scripts/main/Scripts/cookie/get_cookie.js
|
||||
|
||||
# > 滴滴打车
|
||||
# hostname = epassport.diditaxi.com.cn
|
||||
# tips = 微信小程序 -- 滴滴出行, 第一次注册登录后可能需要退出再进一次
|
||||
^https:\/\/epassport\.diditaxi\.com\.cn\/passport\/login\/v5\/signInByOpenid url script-response-body https://raw.githubusercontent.com/fmz200/wool_scripts/main/Scripts/cookie/get_cookie.js
|
||||
|
||||
# > 抖音 抖抖果园
|
||||
# hostname =
|
||||
^https://minigame.zijieapi.com/ttgame/game_orchard_ecom/polling_info url script-request-header https://raw.githubusercontent.com/LinYuanovo/scripts/main/dygy.js
|
||||
|
||||
# > 叮咚买菜 获取cookie
|
||||
# hostname =
|
||||
^https?:\/\/maicai\.api\.ddxq\.mobi\/point\/home\?api_version url script-request-header https://raw.githubusercontent.com/blackmatrix7/ios_rule_script/master/script/dingdong/dingdong_checkin.js
|
||||
;^https:\/\/maicai.api.ddxq.mobi\/point\/home url script-request-header https://raw.githubusercontent.com/chavyleung/scripts/master/mcdd/mcdd.cookie.js
|
||||
|
||||
# > 斗鱼鱼吧 获取cookie
|
||||
# hostname =
|
||||
^https://yuba.douyu.com/wbapi/web/group/myFollow? url script-request-header https://raw.githubusercontent.com/lowking/Scripts/master/douyu/yubaSign.js
|
||||
|
||||
# > 懂球帝
|
||||
# hostname =
|
||||
^https:\/\/api\.dongqiudi\.com\/v2\/user\/is_login url script-request-header https://raw.githubusercontent.com/chavyleung/scripts/master/dongqiudi/dongqiudi.cookie.js
|
||||
|
||||
# > 豆瓣时间
|
||||
# hostname =
|
||||
;^https:\/\/fro\.douban\.com\/api\/v2\/niffler\/check_in\/status url script-request-header https://raw.githubusercontent.com/chavyleung/scripts/master/dbsj/dbsj.cookie.js
|
||||
|
||||
# > 叮咚买菜
|
||||
# hostname =
|
||||
# 叮咚农场
|
||||
https:\/\/maicai\.api\.ddxq\.mobi\/user\/checkLogin url script-request-header https://raw.githubusercontent.com/iepngs/Script/master/dingdong/index.js
|
||||
# 叮咚果园获取Cookie
|
||||
https:\/\/farm\.api\.ddxq\.mobi\/api\/v2\/props\/feed url script-request-header https://raw.githubusercontent.com/iepngs/Script/master/dingdong/ddgy.js
|
||||
|
||||
|
||||
# >>>>>>>>>>>>>>> ✅ E ✅ <<<<<<<<<<<<<<
|
||||
# > 饿了么 每日自动领取任务及吃货豆cookie
|
||||
# hostname =
|
||||
;^https?:\/\/air\.tb\.ele\.me\/app\/conch-page\/svip-foodie-card\/home url script-request-header https://raw.githubusercontent.com/blackmatrix7/ios_rule_script/master/script/eleme/eleme_daily.js
|
||||
;^https?:\/\/air\.tb\.ele\.me\/app\/conch-page\/svip-home-tasklist-new\/home url script-request-header https://raw.githubusercontent.com/blackmatrix7/ios_rule_script/master/script/eleme/eleme_daily.js
|
||||
;^https?:\/\/tb\.ele\.me\/wow\/alsc\/mod url script-request-header https://raw.githubusercontent.com/blackmatrix7/ios_rule_script/master/script/eleme/eleme_daily.js
|
||||
;^https?:\/\/h5\.ele\.me\/restapi\/biz\.svip_scene\/svip\/engine\/queryTrafficSupply url script-request-header https://raw.githubusercontent.com/blackmatrix7/ios_rule_script/master/script/eleme/eleme_daily.js
|
||||
|
||||
|
||||
|
||||
# >>>>>>>>>>>>>>> ✅ F ✅ <<<<<<<<<<<<<<
|
||||
# > Fa米家 获取cookie
|
||||
# hostname =
|
||||
^https?:\/\/fmapp\.chinafamilymart\.com\.cn\/api\/app\/market\/member\/(signin\/usersign|sign\/current) url script-request-header https://raw.githubusercontent.com/blackmatrix7/ios_rule_script/master/script/famijia/famijia_checkin.js
|
||||
|
||||
# > 飞客茶馆
|
||||
# hostname =
|
||||
^https?:\/\/www\.flyert\.com\.cn\/api\/mobile\/index\.php\?module=getdata&.* url script-request-header https://raw.githubusercontent.com/zirawell/R-Store/main/Res/Scripts/CheckIn/flyert.js
|
||||
|
||||
# > 樊登读书
|
||||
# hostname =
|
||||
^https://api\.dushu\.io/CheckIn url script-request-body https://raw.githubusercontent.com/chavyleung/scripts/master/fandeng/fandeng.cookie.js
|
||||
|
||||
|
||||
|
||||
# >>>>>>>>>>>>>>> ✅ G ✅ <<<<<<<<<<<<<<
|
||||
# > Geekhub
|
||||
# hostname =
|
||||
;^https:\/\/geekhub\.com\/checkins\/start url script-request-header https://raw.githubusercontent.com/id77/QuantumultX/master/task/geekhub.cookie.js
|
||||
|
||||
|
||||
|
||||
|
||||
# >>>>>>>>>>>>>>> ✅ H ✅ <<<<<<<<<<<<<<
|
||||
# > hifini 签到cookie
|
||||
# hostname =
|
||||
https:\/\/www.hifini.com\/my.htm url script-request-header https://raw.githubusercontent.com/lowking/Scripts/master/hifini/hifiniSign.js
|
||||
|
||||
# > 合创
|
||||
# hostname =
|
||||
^https:\/\/wxprdapplet\.gac-nio\.com\/community\/userSignIn\/simpleAuth\/front\/v3\.1\.3\.5\/signV2$ url script-request-header https://raw.githubusercontent.com/chavyleung/scripts/master/hycan/hycan.cookie.js
|
||||
|
||||
|
||||
|
||||
# >>>>>>>>>>>>>>> ✅ I ✅ <<<<<<<<<<<<<<
|
||||
|
||||
|
||||
|
||||
|
||||
# >>>>>>>>>>>>>>> ✅ J ✅ <<<<<<<<<<<<<<
|
||||
# > 京东
|
||||
# hostname =
|
||||
# 浏览器登录京东,点击右下角我的页面获取
|
||||
^https:\/\/home\.m\.jd\.com\/myJd\/(newhome|home)\.action url script-request-header https://raw.githubusercontent.com/fmz200/wool_scripts/main/Scripts/jingdong/jd_cookie.js
|
||||
|
||||
# > 京东读书
|
||||
# hostname =
|
||||
^https:\/\/jdread-api\.jd\.com\/* url script-request-header https://raw.githubusercontent.com/XidNDD/2020scripts/master/jddsSign.js
|
||||
|
||||
# > 京东到家
|
||||
# hostname =
|
||||
^https:\/\/daojia.jd.com/client(.*?)functionId=signin(.*?)userSigninNew url script-request-body https://raw.githubusercontent.com/chavyleung/scripts/master/jddj/jddj.cookie.js
|
||||
|
||||
# > 建行生活 签到获取cookie
|
||||
# hostname =
|
||||
^https:\/\/yunbusiness\.ccb\.com\/(clp_coupon|clp_service)\/txCtrl\?txcode=(A3341A038|autoLogin) url script-request-body https://raw.githubusercontent.com/FoKit/Scripts/main/scripts/jhsh_checkIn.js
|
||||
|
||||
# > 柚子快报
|
||||
# hostname =
|
||||
^http?:\/\/hongbao\.youzikuaibao\.com\/youzi\/* url script-request-body https://raw.githubusercontent.com/XidNDD/2020scripts/master/yzkbSign.js
|
||||
|
||||
# > 加油广东
|
||||
# hostname =
|
||||
^https:\/\/m.gdoil.cn\/webapi\/usersign\/addusersign url script-request-header https://raw.githubusercontent.com/chavyleung/scripts/master/gdoil/gdoil.cookie.js
|
||||
|
||||
|
||||
|
||||
# >>>>>>>>>>>>>>> ✅ K ✅ <<<<<<<<<<<<<<
|
||||
# > 快手果园 获取cookie
|
||||
# hostname =
|
||||
^https://ug-fission.kuaishou.com/rest/n/darwin/orchard/water/watering url script-request-header https://raw.githubusercontent.com/fmz200/wool_scripts/main/Scripts/kuaishou/ks_getCookie.js
|
||||
|
||||
# > 快看漫画 cookie
|
||||
# hostname =
|
||||
^https:\/\/api\.kkmh\.com\/v\d\/passport\/user url script-request-header https://raw.githubusercontent.com/NobyDa/Script/master/KuaiKan-DailyBonus/KKMH.js
|
||||
|
||||
|
||||
|
||||
# >>>>>>>>>>>>>>> ✅ L ✅ <<<<<<<<<<<<<<
|
||||
# > Luka 获取cookie
|
||||
# hostname =
|
||||
^https?:\/\/luka\-graphql\.ling\.cn\/graphql\/mobile\?operation=UserInfoWithPendingRobotQuery url script-request-header https://raw.githubusercontent.com/blackmatrix7/ios_rule_script/master/script/luka/luka_signin.js
|
||||
|
||||
|
||||
|
||||
|
||||
# >>>>>>>>>>>>>>> ✅ M ✅ <<<<<<<<<<<<<<
|
||||
# > 美团
|
||||
# hostname = open.meituan.com, gaea.meituan.com
|
||||
# 获取token,美团APP点击“我的-个人主页”
|
||||
# 新版本
|
||||
# 进入“完善资料”,这一步可以获取到用户ID用于更新多账号信息
|
||||
https://open.meituan.com/user/v1/info/auditting url script-response-body https://raw.githubusercontent.com/fmz200/wool_scripts/main/Scripts/cookie/get_cookie.js
|
||||
;https://open.meituan.com/user/v1/info/audit url script-request-header https://raw.githubusercontent.com/fmz200/wool_scripts/main/Scripts/cookie/get_cookie.js
|
||||
# 旧版本
|
||||
https://gaea.meituan.com/mapi/usercenter url script-request-header https://raw.githubusercontent.com/fmz200/wool_scripts/main/Scripts/cookie/get_cookie.js
|
||||
# 小象买菜 每日自动签到cookie, 打开美团App,选择“美团买菜” - “我的” - “天天领钱”
|
||||
;^https?:\/\/mall\.meituan\.com\/api\/c\/mallcoin\/checkIn\/getWeekCheckInProgressBar\? url script-request-header https://raw.githubusercontent.com/blackmatrix7/ios_rule_script/master/script/meituan/maicai_checkin.js
|
||||
|
||||
# > 美团外卖
|
||||
# hostname =
|
||||
^https:\/\/promotion.waimai.meituan.com\/playcenter\/signIn\/entry url script-request-header https://raw.githubusercontent.com/chavyleung/scripts/master/wmmeituan/wmmeituan.cookie.js
|
||||
^https:\/\/promotion.waimai.meituan.com\/playcenter\/signIn\/doaction url script-request-body https://raw.githubusercontent.com/chavyleung/scripts/master/wmmeituan/wmmeituan.cookie.js
|
||||
|
||||
# > 慢慢买 获取cookie
|
||||
# hostname =
|
||||
^https?:\/\/apph5\.manmanbuy\.com\/taolijin\/(login.aspx|logserver.aspx) url script-request-body https://raw.githubusercontent.com/blackmatrix7/ios_rule_script/master/script/manmanbuy/manmanbuy_checkin.js
|
||||
|
||||
# > 芒果TV
|
||||
# hostname =
|
||||
^https:\/\/credits.bz.mgtv.com\/user\/creditsTake url script-request-header https://raw.githubusercontent.com/chavyleung/scripts/master/mgtv/mgtv.cookie.js
|
||||
|
||||
# > 米游社
|
||||
# hostname =
|
||||
^https:\/\/api-takumi.mihoyo.com\/apihub\/api\/getGameList url script-request-header https://raw.githubusercontent.com/chavyleung/scripts/master/mihoyo/mihoyo.cookie.js
|
||||
|
||||
# > 猫咪音乐网
|
||||
# hostname =
|
||||
https:\/\/www.maomicd.com\/plugin.php\?id=k_misign:sign&operation=qiandao url script-request-header https://raw.githubusercontent.com/chavyleung/scripts/master/maomicd/maomicd.cookie.js
|
||||
|
||||
|
||||
|
||||
# >>>>>>>>>>>>>>> ✅ N ✅ <<<<<<<<<<<<<<
|
||||
# > nga
|
||||
# hostname =
|
||||
^https:\/\/ngabbs.com\/nuke.php\?? url script-request-body https://raw.githubusercontent.com/chouchoui/QuanX/master/Scripts/nga/nga.cookie.js
|
||||
|
||||
|
||||
|
||||
|
||||
# >>>>>>>>>>>>>>> ✅ O ✅ <<<<<<<<<<<<<<
|
||||
|
||||
|
||||
|
||||
|
||||
# >>>>>>>>>>>>>>> ✅ P ✅ <<<<<<<<<<<<<<
|
||||
# > 拼多多果园
|
||||
# hostname =
|
||||
https://m.pinduoduo.net/proxy/api/api/server/_stm url script-request-header https://raw.githubusercontent.com/fmz200/wool_scripts/main/Scripts/pinduoduo/pdd_getToken.js
|
||||
|
||||
# > 朴朴签到cookie
|
||||
# hostname =
|
||||
https:\/\/cauth.pupuapi.com\/clientauth\/user\/verify_login url script-request-header https://raw.githubusercontent.com/lowking/Scripts/master/pupu/pupuCheckIn.js
|
||||
|
||||
|
||||
|
||||
# >>>>>>>>>>>>>>> ✅ Q ✅ <<<<<<<<<<<<<<
|
||||
# > QQ VipCheckIn
|
||||
# hostname =
|
||||
https:\/\/proxy\.vac\.qq\.com\/cgi-bin\/srfentry.fcgi? url script-request-header https://raw.githubusercontent.com/lowking/Scripts/master/QQVip/qqVipCheckIn.js
|
||||
|
||||
# > QQ萌宠 cookie
|
||||
# hostname =
|
||||
https:\/\/qqpet.jwetech.com\/api\/authorizations url script-response-body https://raw.githubusercontent.com/lowking/Scripts/master/QQPet/lkQQPet.js
|
||||
|
||||
# > 汽车之家极速版
|
||||
# hostname =
|
||||
^https:\/\/mobile\.app\.autohome\.com\.cn\/fasthome\/* url script-request-body https://raw.githubusercontent.com/XidNDD/2020scripts/master/qczjSign.js
|
||||
^http:\/\/mobile\.app\.autohome\.com\.cn\/fasthome\/coin\/* url script-request-body https://raw.githubusercontent.com/XidNDD/2020scripts/master/qczjSign.js
|
||||
|
||||
# > 去哪儿
|
||||
# hostname =
|
||||
^https:\/\/user.qunar.com\/webapi\/member\/signIndexV2.htm url script-request-header https://raw.githubusercontent.com/chavyleung/scripts/master/qunar/qunar.cookie.js
|
||||
|
||||
# > 全民K歌
|
||||
# hostname =
|
||||
^https://node\.kg\.qq\.com/webapp/proxy? url script-request-body https://raw.githubusercontent.com/chavyleung/scripts/master/qmkg/qmkg.cookie.js
|
||||
|
||||
# > 奇瑞汽车App
|
||||
# hostname = mobile-consumer-sapp.chery.cn
|
||||
^https:\/\/mobile-consumer-sapp\.chery\.cn\/web\/user\/current\/details\? url script-response-body https://raw.githubusercontent.com/fmz200/wool_scripts/main/Scripts/cookie/get_cookie.js
|
||||
|
||||
|
||||
|
||||
# >>>>>>>>>>>>>>> ✅ R ✅ <<<<<<<<<<<<<<
|
||||
# > 人人视频
|
||||
# hostname =
|
||||
^https:\/\/api\.rr\.tv\/user\/profile url script-request-header https://raw.githubusercontent.com/chavyleung/scripts/master/rrtv/rrtv.cookie.js
|
||||
|
||||
|
||||
|
||||
# >>>>>>>>>>>>>>> ✅ S ✅ <<<<<<<<<<<<<<
|
||||
# > 什么值得买 (APP点击个人头像/个人资料获取)
|
||||
# hostname =
|
||||
^https:\/\/user-api\.smzdm\.com\/users\/info url script-request-header https://raw.githubusercontent.com/fmz200/wool_scripts/main/Scripts/cookie/get_cookie.js
|
||||
|
||||
# > 顺丰速运
|
||||
# hostname = mcs-mimp-web.sf-express.com
|
||||
# tips = 打开小程序或APP-我的-积分, 捉以下几种url之一,把整个url放到变量 sfsyUrl 里,多账号换行分割
|
||||
^https:\/\/mcs-mimp-web\.sf-express\.com\/mcs-mimp\/share\/weChat\/shareGiftReceiveRedirect url script-request-header https://raw.githubusercontent.com/fmz200/wool_scripts/main/Scripts/cookie/get_cookie.js
|
||||
^https:\/\/mcs-mimp-web\.sf-express\.com\/mcs-mimp\/share\/app\/shareRedirect url script-request-header https://raw.githubusercontent.com/fmz200/wool_scripts/main/Scripts/cookie/get_cookie.js
|
||||
|
||||
# > 水滴筹
|
||||
# hostname =
|
||||
^https:\/\/api\.sdbao\.com\/* url script-request-body https://raw.githubusercontent.com/XidNDD/2020scripts/master/sdcbxscSign.js
|
||||
|
||||
# > 水晶DJ
|
||||
# hostname =
|
||||
^http:\/\/app\.oscaches\.com\/* url script-request-body https://raw.githubusercontent.com/XidNDD/2020scripts/master/sjdjSign.js
|
||||
|
||||
# > 时光相册
|
||||
# hostname =
|
||||
^https:\/\/api.everphoto.cn\/users\/self\/checkin\/v2 url script-request-header https://raw.githubusercontent.com/chavyleung/scripts/master/everphoto/everphoto.cookie.js
|
||||
|
||||
# > 苏宁易购
|
||||
# hostname =
|
||||
^https:\/\/passport.suning.com\/ids\/login$ url script-request-body https://raw.githubusercontent.com/chavyleung/scripts/master/suning/suning.cookie.js
|
||||
^https:\/\/luckman.suning.com\/luck-web\/sign\/api\/clock_sign.do url script-request-header https://raw.githubusercontent.com/chavyleung/scripts/master/suning/suning.cookie.js
|
||||
^https:\/\/sign.suning.com\/sign-web\/m\/promotion\/sign\/doSign.do url script-request-header https://raw.githubusercontent.com/chavyleung/scripts/master/suning/suning.cookie.js
|
||||
^https:\/\/gameapi.suning.com\/sngame-web\/(api\/signin\/private\/customerSignOperation.do|gateway\/api\/queryPrize.do) url script-request-header https://raw.githubusercontent.com/chavyleung/scripts/master/suning/suning.cookie.js
|
||||
|
||||
|
||||
|
||||
# >>>>>>>>>>>>>>> ✅ T ✅ <<<<<<<<<<<<<<
|
||||
# > TestFlight账号cookie
|
||||
# hostname = testflight.apple.com
|
||||
;^https:\/\/testflight\.apple\.com\/v3\/accounts/.*\/apps$ url script-request-header https://raw.githubusercontent.com/chouchoui/QuanX/master/Scripts/testflight/TF_keys.js
|
||||
;^https://testflight.apple.com/join/(.*) url script-request-header https://raw.githubusercontent.com/chouchoui/QuanX/master/Scripts/testflight/TF_keys.js
|
||||
|
||||
# > 太好购
|
||||
# hostname =
|
||||
^https:\/\/cxdng\.cpic\.com\.cn\/taieshop\/api\/CustomerFansInfo\/GetFansInfo url script-request-header https://raw.githubusercontent.com/id77/QuantumultX/master/task/thg.cookie.js
|
||||
|
||||
# > 天天挖矿
|
||||
# hostname =
|
||||
^https:\/\/operation-api\.jimistore\.com\/* url script-request-body https://raw.githubusercontent.com/XidNDD/2020scripts/master/ttwbxcxSign.js
|
||||
|
||||
# > 腾讯视频
|
||||
# hostname =
|
||||
^https:\/\/access.video.qq.com\/user\/auth_refresh url script-request-header https://raw.githubusercontent.com/chavyleung/scripts/master/videoqq/videoqq.cookie.js
|
||||
|
||||
|
||||
|
||||
# >>>>>>>>>>>>>>> ✅ U ✅ <<<<<<<<<<<<<<
|
||||
|
||||
|
||||
|
||||
# >>>>>>>>>>>>>>> ✅ V ✅ <<<<<<<<<<<<<<
|
||||
# > V2EX
|
||||
# hostname =
|
||||
^https:\/\/www\.v2ex\.com\/mission\/daily url script-request-header https://raw.githubusercontent.com/chavyleung/scripts/master/v2ex/quanx/v2ex.cookie.js
|
||||
|
||||
|
||||
|
||||
|
||||
# >>>>>>>>>>>>>>> ✅ W ✅ <<<<<<<<<<<<<<
|
||||
# > WPS
|
||||
# hostname =
|
||||
^https:\/\/zt.wps.cn\/2018\/docer_check_in\/api\/act_list url script-request-header https://raw.githubusercontent.com/chavyleung/scripts/master/wps/wps.cookie.js
|
||||
|
||||
# > 微博 获取cookie
|
||||
# hostname = *.weibo.cn, *.weibo.com, weibo.com
|
||||
^https:\/\/m?api\.weibo\.c(n|om)\/\d\/users\/show url script-request-header https://raw.githubusercontent.com/fmz200/wool_scripts/main/Scripts/cookie/get_cookie.js
|
||||
^https:\/\/api\.weibo\.cn\/\d\/users\/show url script-request-header https://raw.githubusercontent.com/FoKit/Scripts/main/scripts/weibo_sign.js
|
||||
^https:\/\/api\.weibo\.cn\/2\/logservice\/attach url script-request-header https://raw.githubusercontent.com/FoKit/Scripts/main/scripts/weibo_sign.js
|
||||
^https:\/\/weibo\.com\/p\/aj\/general\/button\?ajwvr=6&api=http:\/\/i\.huati\.weibo\.com\/aj\/super\/checkin url script-request-header https://raw.githubusercontent.com/lowking/Scripts/master/weibo/weiboSTCookie.js
|
||||
# 微博超话签到获取cookie
|
||||
^https://m?api\.weibo\.c(n|om)\/2\/(cardlist|page\/button) url script-request-header https://raw.githubusercontent.com/toulanboy/scripts/master/weibo/weibotalk.cookie.js
|
||||
|
||||
# > 吾爱破解 cookie
|
||||
# hostname =
|
||||
https:\/\/www\.52pojie\.cn\/home\.php\? url script-request-header https://raw.githubusercontent.com/NobyDa/Script/master/52pojie-DailyBonus/52pojie.js
|
||||
|
||||
# > 网易游戏会员
|
||||
# hostname =
|
||||
;^https:\/\/huiyuan\.163\.com\/jf\-mall\-api\/api\/sign_up\/(lucky|normal) url script-request-header https://raw.githubusercontent.com/id77/QuantumultX/master/task/163GameVip.cookie.js
|
||||
|
||||
# > 网易严选
|
||||
# hostname =
|
||||
# ^https:\/\/m\.you\.163\.com\/xhr\/points\/index\.json url script-request-header https://raw.githubusercontent.com/chavyleung/scripts/master/yanxuan/yanxuan.cookie.js
|
||||
|
||||
# > 网易云音乐
|
||||
# hostname =
|
||||
^https:\/\/music.163.com\/weapi\/user\/level url script-request-body https://raw.githubusercontent.com/chavyleung/scripts/master/neteasemusic/quanx/neteasemusic.cookie.js
|
||||
|
||||
# > 网易新闻
|
||||
# hostname =
|
||||
^https:\/\/(.*?)c\.m\.163\.com\/uc\/api\/sign\/v3\/commit url script-request-body https://raw.githubusercontent.com/chavyleung/scripts/master/neteasenews/neteasenews.cookie.js
|
||||
|
||||
# > 网易考拉
|
||||
# hostname =
|
||||
^https:\/\/m-bean\.kaola\.com/m/point/sign\.html url script-request-body https://raw.githubusercontent.com/chavyleung/scripts/master/wykl/wykl.cookie.js
|
||||
|
||||
# > 微商星球
|
||||
# hostname =
|
||||
^https:\/\/api\.momosyb\.com\/(v6|v1)\/(fans|user)\/* url script-request-body https://raw.githubusercontent.com/XidNDD/2020scripts/master/wsxqSign.js
|
||||
|
||||
# > 威锋网
|
||||
# hostname =
|
||||
# ^https:\/\/(www\.)?feng\.com\/?.? url script-request-header https://raw.githubusercontent.com/chavyleung/scripts/master/feng/feng.cookie.js
|
||||
|
||||
# > 蔚来
|
||||
# hostname =
|
||||
^https:\/\/app\.nio\.com\/api\/1\/app\/daily_checkin url script-request-header https://raw.githubusercontent.com/chavyleung/scripts/master/nio/nio.cookie.js
|
||||
|
||||
|
||||
|
||||
# >>>>>>>>>>>>>>> ✅ X ✅ <<<<<<<<<<<<<<
|
||||
# > 小米运动
|
||||
# hostname =
|
||||
;^https:\/\/account\.huami\.com\/v2\/client\/login url script-response-body https://raw.githubusercontent.com/fmz200/wool_scripts/main/xiaomiSports/xmSports.js
|
||||
|
||||
# > 携程
|
||||
# hostname =
|
||||
^https:\/\/m\.ctrip\.com\/restapi\/soa2\/14946\/json\/userBaseInfo url script-request-header https://raw.githubusercontent.com/barrym-chen/Script/master/ctrip/ctrip_cookie.js
|
||||
|
||||
# > 喜马拉雅
|
||||
# hostname =
|
||||
^https?:\/\/.*\/mobile\-user\/(v1\/)?homePage\/.* url script-request-header https://raw.githubusercontent.com/chavyleung/scripts/master/ximalaya/ximalaya.cookie.js
|
||||
|
||||
# > 晓晓优选
|
||||
# hostname = xxyx-client-api.xiaoxiaoyouxuan.com
|
||||
^https:\/\/xxyx-client-api\.xiaoxiaoyouxuan\.com\/my url script-response-body https://raw.githubusercontent.com/fmz200/wool_scripts/main/Scripts/cookie/get_cookie.js
|
||||
|
||||
|
||||
|
||||
# >>>>>>>>>>>>>>> ✅ Y ✅ <<<<<<<<<<<<<<
|
||||
# > 伊利
|
||||
# hostname =
|
||||
https:\/\/club\.yili\.com\/MALLIFChe\/MCSWSIAPI\.asmx\/Call url script-request-body https://raw.githubusercontent.com/id77/QuantumultX/master/task/yiLi.cookie.js
|
||||
|
||||
|
||||
|
||||
|
||||
# >>>>>>>>>>>>>>> ✅ Z ✅ <<<<<<<<<<<<<<
|
||||
# > 中国电信 获取Cookie
|
||||
# hostname = e.dlife.cn, e.189.cn, wapside.189.cn
|
||||
^https:\/\/(e\.189\.cn\/store\/user|open\.e\.189\.cn\/api\/logbox\/oauth2\/loginSubmit\.do) url script-request-header https://raw.githubusercontent.com/FoKit/Scripts/main/scripts/get_10000_cookie.js
|
||||
^https:\/\/wapside\.189\.cn:9001\/api\/home\/sign url script-request-body https://raw.githubusercontent.com/chavyleung/scripts/master/10000/10000.cookie.js
|
||||
^https:\/\/e\.dlife\.cn\/user\/loginMiddle url script-request-header https://raw.githubusercontent.com/dompling/Script/master/10000/index.js
|
||||
|
||||
# > 中国联通
|
||||
# hostname = act.10010.com, m.client.10010.com
|
||||
^https?:\/\/act\.10010\.com\/SigninApp\/signin\/querySigninActivity\.htm url script-request-header https://raw.githubusercontent.com/chavyleung/scripts/master/10010/10010.cookie.js
|
||||
^https?:\/\/act\.10010\.com\/SigninApp(.*?)\/signin\/daySign url script-request-header https://raw.githubusercontent.com/chavyleung/scripts/master/10010/10010.cookie.js
|
||||
^https?:\/\/m\.client\.10010\.com\/dailylottery\/static\/(textdl\/userLogin|active\/findActivityInfo) url script-request-header https://raw.githubusercontent.com/chavyleung/scripts/master/10010/10010.cookie.js
|
||||
# 打开中国联通app --> 首页的流量查询获取Cookie
|
||||
^https?:\/\/m\.client\.10010\.com\/serviceimportantbusiness\/smart\/smartwisdomCommonNew url script-request-header https://raw.githubusercontent.com/dompling/Script/master/10010/index.js
|
||||
|
||||
# > 中国移动
|
||||
# hostname =
|
||||
;^http:\/\/wx.10086.cn\/website\/taskCenter\/index\? url script-request-header https://raw.githubusercontent.com/chavyleung/scripts/master/10086/10086.cookie.js
|
||||
;^http:\/\/wx.10086.cn\/website\/taskCenter\/sign\? url script-request-header https://raw.githubusercontent.com/chavyleung/scripts/master/10086/10086.cookie.js
|
||||
|
||||
# > 追书畅读版
|
||||
# hostname =
|
||||
^https:\/\/.+zhuishushenqi\.com\/* url script-request-body https://raw.githubusercontent.com/XidNDD/2020scripts/master/zscdbSign.js
|
||||
|
||||
# > 知音漫客
|
||||
# hostname =
|
||||
^https:\/\/getconfig-globalapi\.zymk\.cn\/app_api\/* url script-request-body https://raw.githubusercontent.com/XidNDD/2020scripts/master/zymkSign.js
|
||||
|
||||
# > 字幕组
|
||||
# hostname =
|
||||
^https?:\/\/(www\.)?rrys2020\.com\/?.? url script-request-header https://raw.githubusercontent.com/chavyleung/scripts/master/zimuzu/zimuzu.cookie.js
|
||||
^http:\/\/ios.zmzapi.com\/index.php.*a=(mobile_)?login url script-request-header https://raw.githubusercontent.com/chavyleung/scripts/master/zimuzu/zimuzu.cookie.js
|
||||
|
||||
# > 智行火车
|
||||
# hostname =
|
||||
^https:\/\/m\.ctrip\.com/restapi/soa2/14593/json/attendanceDay? url script-request-body https://raw.githubusercontent.com/chavyleung/scripts/master/zxhc/zxhc.cookie.js
|
||||
3848
QuantumultX/rewrite/rewrite.snippet
Normal file
3848
QuantumultX/rewrite/rewrite.snippet
Normal file
File diff suppressed because one or more lines are too long
7
QuantumultX/rewrite/unlock/TikTok/TiktokHK.conf
Normal file
7
QuantumultX/rewrite/unlock/TikTok/TiktokHK.conf
Normal file
@ -0,0 +1,7 @@
|
||||
# TikTok 香港
|
||||
(?<=_region=)CN(?=&) url 307 HK
|
||||
(?<=&mcc_mnc=)4 url 307 2
|
||||
^(https?:\/\/(tnc|dm)[\w-]+\.\w+\.com\/.+)(\?)(.+) url 302 $1$3
|
||||
(?<=\d\/\?\w{7}_\w{4}=)1[6-9]..(?=.?.?&) url 307 17
|
||||
|
||||
hostname = *.tiktokv.com,*.byteoversea.com,*.tik-tokapi.com
|
||||
7
QuantumultX/rewrite/unlock/TikTok/TiktokJP.conf
Normal file
7
QuantumultX/rewrite/unlock/TikTok/TiktokJP.conf
Normal file
@ -0,0 +1,7 @@
|
||||
# TikTok 日本
|
||||
(?<=_region=)CN(?=&) url 307 JP
|
||||
(?<=&mcc_mnc=)4 url 307 2
|
||||
^(https?:\/\/(tnc|dm)[\w-]+\.\w+\.com\/.+)(\?)(.+) url 302 $1$3
|
||||
(?<=\d\/\?\w{7}_\w{4}=)1[6-9]..(?=.?.?&) url 307 17
|
||||
|
||||
hostname = *.tiktokv.com,*.byteoversea.com,*.tik-tokapi.com
|
||||
7
QuantumultX/rewrite/unlock/TikTok/TiktokKR.conf
Normal file
7
QuantumultX/rewrite/unlock/TikTok/TiktokKR.conf
Normal file
@ -0,0 +1,7 @@
|
||||
# TikTok 韩国
|
||||
(?<=_region=)CN(?=&) url 307 KR
|
||||
(?<=&mcc_mnc=)4 url 307 2
|
||||
^(https?:\/\/(tnc|dm)[\w-]+\.\w+\.com\/.+)(\?)(.+) url 302 $1$3
|
||||
(?<=\d\/\?\w{7}_\w{4}=)1[6-9]..(?=.?.?&) url 307 17
|
||||
|
||||
hostname = *.tiktokv.com,*.byteoversea.com,*.tik-tokapi.com
|
||||
7
QuantumultX/rewrite/unlock/TikTok/TiktokMO.conf
Normal file
7
QuantumultX/rewrite/unlock/TikTok/TiktokMO.conf
Normal file
@ -0,0 +1,7 @@
|
||||
# TikTok 澳门
|
||||
(?<=_region=)CN(?=&) url 307 MO
|
||||
(?<=&mcc_mnc=)4 url 307 2
|
||||
^(https?:\/\/(tnc|dm)[\w-]+\.\w+\.com\/.+)(\?)(.+) url 302 $1$3
|
||||
(?<=\d\/\?\w{7}_\w{4}=)1[6-9]..(?=.?.?&) url 307 17
|
||||
|
||||
hostname = *.tiktokv.com,*.byteoversea.com,*.tik-tokapi.com
|
||||
7
QuantumultX/rewrite/unlock/TikTok/TiktokTW.conf
Normal file
7
QuantumultX/rewrite/unlock/TikTok/TiktokTW.conf
Normal file
@ -0,0 +1,7 @@
|
||||
# TikTok 台湾
|
||||
(?<=_region=)CN(?=&) url 307 TW
|
||||
(?<=&mcc_mnc=)4 url 307 2
|
||||
^(https?:\/\/(tnc|dm)[\w-]+\.\w+\.com\/.+)(\?)(.+) url 302 $1$3
|
||||
(?<=\d\/\?\w{7}_\w{4}=)1[6-9]..(?=.?.?&) url 307 17
|
||||
|
||||
hostname = *.tiktokv.com,*.byteoversea.com,*.tik-tokapi.com
|
||||
7
QuantumultX/rewrite/unlock/TikTok/TiktokUA.conf
Normal file
7
QuantumultX/rewrite/unlock/TikTok/TiktokUA.conf
Normal file
@ -0,0 +1,7 @@
|
||||
# TikTok 乌克兰
|
||||
(?<=_region=)CN(?=&) url 307 UA
|
||||
(?<=&mcc_mnc=)4 url 307 2
|
||||
^(https?:\/\/(tnc|dm)[\w-]+\.\w+\.com\/.+)(\?)(.+) url 302 $1$3
|
||||
(?<=\d\/\?\w{7}_\w{4}=)1[6-9]..(?=.?.?&) url 307 17
|
||||
|
||||
hostname = *.tiktokv.com,*.byteoversea.com,*.tik-tokapi.com
|
||||
7
QuantumultX/rewrite/unlock/TikTok/TiktokUK.conf
Normal file
7
QuantumultX/rewrite/unlock/TikTok/TiktokUK.conf
Normal file
@ -0,0 +1,7 @@
|
||||
# TikTok 英国
|
||||
(?<=_region=)CN(?=&) url 307 UK
|
||||
(?<=&mcc_mnc=)4 url 307 2
|
||||
^(https?:\/\/(tnc|dm)[\w-]+\.\w+\.com\/.+)(\?)(.+) url 302 $1$3
|
||||
(?<=\d\/\?\w{7}_\w{4}=)1[6-9]..(?=.?.?&) url 307 17
|
||||
|
||||
hostname = *.tiktokv.com,*.byteoversea.com,*.tik-tokapi.com
|
||||
7
QuantumultX/rewrite/unlock/TikTok/TiktokUS.conf
Normal file
7
QuantumultX/rewrite/unlock/TikTok/TiktokUS.conf
Normal file
@ -0,0 +1,7 @@
|
||||
# TikTok 美国
|
||||
(?<=_region=)CN(?=&) url 307 US
|
||||
(?<=&mcc_mnc=)4 url 307 2
|
||||
^(https?:\/\/(tnc|dm)[\w-]+\.\w+\.com\/.+)(\?)(.+) url 302 $1$3
|
||||
(?<=\d\/\?\w{7}_\w{4}=)1[6-9]..(?=.?.?&) url 307 17
|
||||
|
||||
hostname = *.tiktokv.com,*.byteoversea.com,*.tik-tokapi.com
|
||||
7
QuantumultX/rewrite/unlock/TikTok/TiktokVN.conf
Normal file
7
QuantumultX/rewrite/unlock/TikTok/TiktokVN.conf
Normal file
@ -0,0 +1,7 @@
|
||||
# TikTok 越南
|
||||
(?<=_region=)CN(?=&) url 307 VN
|
||||
(?<=&mcc_mnc=)4 url 307 2
|
||||
^(https?:\/\/(tnc|dm)[\w-]+\.\w+\.com\/.+)(\?)(.+) url 302 $1$3
|
||||
(?<=\d\/\?\w{7}_\w{4}=)1[6-9]..(?=.?.?&) url 307 17
|
||||
|
||||
hostname = *.tiktokv.com,*.byteoversea.com,*.tik-tokapi.com
|
||||
287
QuantumultX/rewrite/unlock/TikTok/国家代码.md
Normal file
287
QuantumultX/rewrite/unlock/TikTok/国家代码.md
Normal file
@ -0,0 +1,287 @@
|
||||
### 1️⃣ 注意:对于版本号在21.0以上的tiktok已失效
|
||||
|
||||
### 2️⃣ 国家代码简介:
|
||||
- 1、国家代码是一组用来代表国家和境外领土的地理代码;
|
||||
- 2、国家代码是由字母或数字组成的短字串,方便用于数据处理和通讯;
|
||||
- 3、ISO 3166-1提供了国家地区代码的三种表现方式,具体包括:
|
||||
- 两字母代码(ISO 3166-1 alpha-2):由两字符拉丁字母组成的代码。这种代码拥有多种用途,其中最重要的一个用途与互联网的地理级别域名有关;
|
||||
- 三字母代码(ISO 3166-1 alpha-3):由三字符拉丁字母组成的代码;
|
||||
- 数字代码(ISO 3166-1 numeric):由三位阿拉伯数字组成的代码;
|
||||
- 4、表格中 SN 列仅用于本页面项目的索引,无其它意义;
|
||||
- 5、移动端: 若在表格最左侧看到 号,可单击该 号查看详情;
|
||||
- 6、电脑端: Ctrl+D(收藏本网页), Ctrl+S(保存本网页到电脑), Ctrl+F(在本网页查找字符);
|
||||
- 7、以下内容按照英文简称的字母顺序排序;
|
||||
|
||||
|
||||
### 3️⃣ 国家代码对照表
|
||||
| 序号 | 字母顺序 | 中文简称 | 英文简称 | ISO 2 | ISO 3 | 数字代码 | 电话区号 | 域名后缀 | 备注 |
|
||||
|:---:|:---------------------------------------------------------------------------------------------------------------------------------------:|:------------:|:--------------------------------------------:|:-----:|:-----:|:----:|:-------------:|:----:|:--------------------------------------------------------:|
|
||||
| | A | | | | | | | | |
|
||||
| 1 |  | 阿富汗 | Afghanistan | AF | AFG | 004 | 93 | .af | the Islamic Republic of Afghanistan |
|
||||
| 2 | | 奥兰群岛 | Aland Islands | AX | ALA | 248 | 358 18 | .ax | ISO 3166-1:2006新增 |
|
||||
| 3 |  | 阿尔巴尼亚 | Albania | AL | ALB | 008 | 355 | .al | the Republic of Albania |
|
||||
| 4 |  | 阿尔及利亚 | Algeria | DZ | DZA | 012 | 213 | .dz | the People's Democratic Republic of Algeria |
|
||||
| 5 |  | 美属萨摩亚 | American Samoa | AS | ASM | 016 | 1 684 | .as | |
|
||||
| 6 |  | 安道尔 | Andorra | AD | AND | 020 | 376 | .ad | the Principality of Andorra |
|
||||
| 7 |  | 安哥拉 | Angola | AO | AGO | 024 | 244 | .ao | the Republic of Angola |
|
||||
| 8 |  | 安圭拉 | Anguilla | AI | AIA | 660 | 1 264 | .ai | |
|
||||
| 9 |  | 南极洲 | Antarctica | AQ | ATA | 010 | 6721 | .aq | |
|
||||
| 10 |  | 安提瓜和巴布达 | Antigua and Barbuda | AG | ATG | 028 | 1 268 | .ag | |
|
||||
| 11 |  | 阿根廷 | Argentina | AR | ARG | 032 | 54 | .ar | the Argentine Republic |
|
||||
| 12 |  | 亚美尼亚 | Armenia | AM | ARM | 051 | 374 | .am | the Republic of Armenia |
|
||||
| 13 |  | 阿鲁巴 | Aruba | AW | ABW | 533 | 297 | .aw | |
|
||||
| 14 |  | 澳大利亚 | Australia | AU | AUS | 036 | 61 | .au | |
|
||||
| 15 |  | 奥地利 | Austria | AT | AUT | 040 | 43 | .at | the Republic of Austria |
|
||||
| 16 |  | 阿塞拜疆 | Azerbaijan | AZ | AZE | 031 | 994 | .az | the Republic of Azerbaijan |
|
||||
| | B | | | | | | | | |
|
||||
| 17 |  | 巴哈马 | Bahamas | BS | BHS | 044 | 1 242 | .bs | the Commonwealth of The Bahamas |
|
||||
| 18 |  | 巴林 | Bahrain | BH | BHR | 048 | 973 | .bh | the Kingdom of Bahrain |
|
||||
| 19 |  | 孟加拉国 | Bangladesh | BD | BGD | 050 | 880 | .bd | the People's Republic of Bangladesh |
|
||||
| 20 |  | 巴巴多斯 | Barbados | BB | BRB | 052 | 1 246 | .bb | |
|
||||
| 21 |  | 白俄罗斯 | Belarus | BY | BLR | 112 | 375 | .by | the Republic of Belarus |
|
||||
| 22 |  | 比利时 | Belgium | BE | BEL | 056 | 32 | .be | the Kingdom of Belgium |
|
||||
| 23 |  | 伯利兹 | Belize | BZ | BLZ | 084 | 501 | .bz | |
|
||||
| 24 |  | 贝宁 | Benin | BJ | BEN | 204 | 229 | .bj | the Republic of Benin |
|
||||
| 25 |  | 百慕大 | Bermuda | BM | BMU | 060 | 1 441 | .bm | |
|
||||
| 26 |  | 不丹 | Bhutan | BT | BTN | 064 | 975 | .bt | the Kingdom of Bhutan |
|
||||
| 27 |  | 玻利维亚 | Bolivia | BO | BOL | 068 | 591 | .bo | the Republic of Bolivia |
|
||||
| 28 |  | 波黑 | Bosnia and Herzegovina | BA | BIH | 070 | 387 | .ba | |
|
||||
| 29 |  | 博茨瓦纳 | Botswana | BW | BWA | 072 | 267 | .bw | the Republic of Botswana |
|
||||
| 30 |  | 布维岛 | Bouvet Island | BV | BVT | 074 | 47 | .bv | |
|
||||
| 31 |  | 巴西 | Brazil | BR | BRA | 076 | 55 | .br | the Federative Republic of Brazil |
|
||||
| 32 |  | 英属印度洋领地 | British Indian Ocean Territory | IO | IOT | 086 | 246 | .io | |
|
||||
| 33 |  | 文莱 | Brunei Darussalam | BN | BRN | 096 | 673 | .bn | |
|
||||
| 34 |  | 保加利亚 | Bulgaria | BG | BGR | 100 | 359 | .bg | the Republic of Bulgaria |
|
||||
| 35 |  | 布基纳法索 | Burkina Faso | BF | BFA | 854 | 226 | .bf | |
|
||||
| 36 |  | 布隆迪 | Burundi | BI | BDI | 108 | 257 | .bi | the Republic of Burundi |
|
||||
| | C | | | | | | | | |
|
||||
| 37 |  | 柬埔寨 | Cambodia | KH | KHM | 116 | 855 | .kh | the Kingdom of Cambodia |
|
||||
| 38 |  | 喀麦隆 | Cameroon | CM | CMR | 120 | 237 | .cm | the Republic of Cameroon |
|
||||
| 39 |  | 加拿大 | Canada | CA | CAN | 124 | 1 | .ca | |
|
||||
| 40 |  | 佛得角 | Cape Verde | CV | CPV | 132 | 238 | .cv | the Republic of Cape Verde |
|
||||
| 41 |  | 开曼群岛 | Cayman Islands | KY | CYM | 136 | 1 345 | .ky | |
|
||||
| 42 |  | 中非 | Central African Republic | CF | CAF | 140 | 236 | .cf | the Central African Republic |
|
||||
| 43 |  | 乍得 | Chad | TD | TCD | 148 | 235 | .td | the Republic of Chad |
|
||||
| 44 |  | 智利 | Chile | CL | CHL | 152 | 56 | .cl | the Republic of Chile |
|
||||
| 45 |  | 中国 | China | CN | CHN | 156 | 86 | .cn | the People's Republic of China |
|
||||
| 46 |  | 圣诞岛 | Christmas Island | CX | CXR | 162 | 61 | .cx | |
|
||||
| 47 |  | 科科斯(基林)群岛 | Cocos (Keeling) Islands | CC | CCK | 166 | 61 | .cc | |
|
||||
| 48 |  | 哥伦比亚 | Colombia | CO | COL | 170 | 57 | .co | the Republic of Colombia |
|
||||
| 49 |  | 科摩罗 | Comoros | KM | COM | 174 | 269 | .km | the Union of the Comoros |
|
||||
| 50 |  | 刚果(布) | Congo | CG | COG | 178 | 243 | .cg | the Republic of the Congo |
|
||||
| 51 |  | 刚果(金) | Congo | CD | COD | 180 | 242 | .cd | the Democratic Republic of the Congo |
|
||||
| 52 |  | 库克群岛 | Cook Islands | CK | COK | 184 | 682 | .ck | |
|
||||
| 53 |  | 哥斯达黎加 | Costa Rica | CR | CRI | 188 | 506 | .cr | the Republic of Costa Rica |
|
||||
| 54 | | 科特迪瓦 | Côte d'Ivoire | CI | CIV | 384 | 225 | .ci | the Republic of Côte d'Ivoire |
|
||||
| 55 |  | 克罗地亚 | Croatia | HR | HRV | 191 | 385 | .hr | the Republic of Croatia |
|
||||
| 56 |  | 古巴 | Cuba | CU | CUB | 192 | 53 | .cu | the Republic of Cuba |
|
||||
| 57 |  | 塞浦路斯 | Cyprus | CY | CYP | 196 | 357 | .cy | the Republic of Cyprus |
|
||||
| 58 |  | 捷克 | Czech Republic | CZ | CZE | 203 | 420 | .cz | the Czech Republic |
|
||||
| | D | | | | | | | | |
|
||||
| 59 |  | 丹麦 | Denmark | DK | DNK | 208 | 45 | .dk | the Kingdom of Denmark |
|
||||
| 60 |  | 吉布提 | Djibouti | DJ | DJI | 262 | 253 | .dj | the Republic of Djibouti |
|
||||
| 61 |  | 多米尼克 | Dominica | DM | DMA | 212 | 1 767 | .dm | the Commonwealth of Dominica |
|
||||
| 62 |  | 多米尼加 | Dominican Republic | DO | DOM | 214 | 1 809/829/849 | .do | the Dominican Republic |
|
||||
| | E | | | | | | | | |
|
||||
| 63 |  | 厄瓜多尔 | Ecuador | EC | ECU | 218 | 593 | .ec | the Republic of Ecuador |
|
||||
| 64 |  | 埃及 | Egypt | EG | EGY | 818 | 20 | .eg | the Arab Republic of Egypt |
|
||||
| 65 |  | 萨尔瓦多 | El Salvador | SV | SLV | 222 | 503 | .sv | the Republic of El Salvador |
|
||||
| 66 |  | 赤道几内亚 | Equatorial Guinea | GQ | GNQ | 226 | 240 | .gq | the Republic of Equatorial Guinea |
|
||||
| 67 |  | 厄立特里亚 | Eritrea | ER | ERI | 232 | 291 | .er | |
|
||||
| 68 |  | 爱沙尼亚 | Estonia | EE | EST | 233 | 372 | .ee | the Republic of Estonia |
|
||||
| 69 |  | 埃塞俄比亚 | Ethiopia | ET | ETH | 231 | 251 | .et | the Federal Democratic Republic of Ethiopia |
|
||||
| | F | | | | | | | | |
|
||||
| 70 |  | 福克兰群岛 | Falkland Islands | FK | FLK | 238 | 500 | .fk | |
|
||||
| 71 |  | 法罗群岛 | Faroe Islands | FO | FRO | 234 | 298 | .fo | |
|
||||
| 72 |  | 斐济 | Fiji | FJ | FJI | 242 | 679 | .fj | the Republic of the Fiji Islands |
|
||||
| 73 |  | 芬兰 | Finland | FI | FIN | 246 | 358 | .fi | the Republic of Finland |
|
||||
| 74 |  | 法国 | France | FR | FRA | 250 | 33 | .fr | the French Republic |
|
||||
| 75 |  | 法属圭亚那 | French Guiana | GF | GUF | 254 | 594 | .gf | |
|
||||
| 76 |  | 法属波利尼西亚 | French Polynesia | PF | PYF | 258 | 689 | .pf | |
|
||||
| 77 |  | 法属南部领地 | French Southern Territories | TF | ATF | 260 | - | .tf | |
|
||||
| | G | | | | | | | | |
|
||||
| 78 |  | 加蓬 | Gabon | GA | GAB | 266 | 241 | .ga | the Gabonese Republic |
|
||||
| 79 |  | 冈比亚 | Gambia | GM | GMB | 270 | 220 | .gm | the Republic of The Gambia |
|
||||
| 80 |  | 格鲁吉亚 | Georgia | GE | GEO | 268 | 995 | .ge | |
|
||||
| 81 |  | 德国 | Germany | DE | DEU | 276 | 49 | .de | he Federal Republic of Germany |
|
||||
| 82 |  | 加纳 | Ghana | GH | GHA | 288 | 233 | .gh | the Republic of Ghana |
|
||||
| 83 |  | 直布罗陀 | Gibraltar | GI | GIB | 292 | 350 | .gi | |
|
||||
| 84 |  | 希腊 | Greece | GR | GRC | 300 | 30 | .gr | the Hellenic Republic |
|
||||
| 85 |  | 格陵兰 | Greenland | GL | GRL | 304 | 299 | .gl | |
|
||||
| 86 |  | 格林纳达 | Grenada | GD | GRD | 308 | 1 473 | .gd | |
|
||||
| 87 |  | 瓜德罗普 | Guadeloupe | GP | GLP | 312 | 590 | .gp | |
|
||||
| 88 |  | 关岛 | Guam | GU | GUM | 316 | 1 671 | .gu | |
|
||||
| 89 |  | 危地马拉 | Guatemala | GT | GTM | 320 | 502 | .gt | the Republic of Guatemala |
|
||||
| 90 |  | 格恩西岛 | Guernsey | GG | GGY | 831 | 44 | .gg | ISO 3166-1:2006新增 |
|
||||
| 91 |  | 几内亚 | Guinea | GN | GIN | 324 | 224 | .gn | the Republic of Guinea |
|
||||
| 92 |  | 几内亚比绍 | Guinea-Bissau | GW | GNB | 624 | 245 | .gw | the Republic of Guinea-Bissau |
|
||||
| 93 |  | 圭亚那 | Guyana | GY | GUY | 328 | 592 | .gy | the Republic of Guyana |
|
||||
| | H | | | | | | | | |
|
||||
| 94 |  | 海地 | Haiti | HT | HTI | 332 | 509 | .ht | the Republic of Haiti |
|
||||
| 95 |  | 赫德岛和麦克唐纳岛 | Heard Island and McDonald Islands | HM | HMD | 334 | 1 672 | .hm | |
|
||||
| 96 |  | 梵蒂冈 | Holy See | VA | VAT | 336 | 379 | .va | ISO 3166.1:2006调整英文名称,代码未变 |
|
||||
| 97 |  | 洪都拉斯 | Honduras | HN | HND | 340 | 504 | .hn | the Republic of Honduras |
|
||||
| 98 |  | 香港 | Hong Kong | HK | HKG | 344 | 852 | .hk | the Hong Kong Special Administrative Region of China |
|
||||
| 99 |  | 匈牙利 | Hungary | HU | HUN | 348 | 36 | .hu | the Republic of Hungary |
|
||||
| | I | | | | | | | | |
|
||||
| 100 |  | 冰岛 | Iceland | IS | ISL | 352 | 354 | .is | the Republic of Iceland |
|
||||
| 101 |  | 印度 | India | IN | IND | 356 | 91 | .in | the Republic of India |
|
||||
| 102 |  | 印度尼西亚 | Indonesia | ID | IDN | 360 | 62 | .id | the Republic of Indonesia |
|
||||
| 103 |  | 伊朗 | Iran | IR | IRN | 364 | 98 | .ir | the Islamic Republic of Iran |
|
||||
| 104 |  | 伊拉克 | Iraq | IQ | IRQ | 368 | 964 | .iq | the Republic of Iraq |
|
||||
| 105 |  | 爱尔兰 | Ireland | IE | IRL | 372 | 353 | .ie | |
|
||||
| 106 |  | 英国属地曼岛 | Isle of Man | IM | IMN | 833 | 44 | .im | ISO 3166-1:2006新增 |
|
||||
| 107 |  | 以色列 | Israel | IL | ISR | 376 | 972 | .il | the State of Israel |
|
||||
| 108 |  | 意大利 | Italy | IT | ITA | 380 | 39 | .it | the Republic of Italy |
|
||||
| | J | | | | | | | | |
|
||||
| 109 |  | 牙买加 | Jamaica | JM | JAM | 388 | 1 876 | .jm | |
|
||||
| 110 |  | 日本 | Japan | JP | JPN | 392 | 81 | .jp | |
|
||||
| 111 |  | 泽西岛 | Jersey | JE | JEY | 832 | 44 | .je | ISO 3166-1:2006新增 |
|
||||
| 112 |  | 约旦 | Jordan | JO | JOR | 400 | 962 | .jo | the Hashemite Kingdom of Jordan |
|
||||
| | K | | | | | | | | |
|
||||
| 113 |  | 哈萨克斯坦 | Kazakhstan | KZ | KAZ | 398 | 7 | .kz | the Republic of Kazakhstan |
|
||||
| 114 |  | 肯尼亚 | Kenya | KE | KEN | 404 | 254 | .ke | the Republic of Kenya |
|
||||
| 115 |  | 基里巴斯 | Kiribati | KI | KIR | 296 | 686 | .ki | the Republic of Kiribati |
|
||||
| 116 |  | 朝鲜 | Korea | KP | PRK | 408 | 850 | .kp | the Democratic People's Republic of Korea |
|
||||
| 117 |  | 韩国 | Korea | KR | KOR | 410 | 82 | .kr | the Republic of Korea |
|
||||
| 118 |  | 科威特 | Kuwait | KW | KWT | 414 | 965 | .kw | the State of Kuwait |
|
||||
| 119 |  | 吉尔吉斯斯坦 | Kyrgyzstan | KG | KGZ | 417 | 996 | .kg | the Kyrgyz Republic |
|
||||
| | L | | | | | | | | |
|
||||
| 120 |  | 老挝 | Lao People's Democratic Republic | LA | LAO | 418 | 856 | .la | the Lao People's Democratic Republic |
|
||||
| 121 |  | 拉脱维亚 | Latvia | LV | LVA | 428 | 371 | .lv | the Republic of Latvia |
|
||||
| 122 |  | 黎巴嫩 | Lebanon | LB | LBN | 422 | 961 | .lb | the Lebanese Republic |
|
||||
| 123 |  | 莱索托 | Lesotho | LS | LSO | 426 | 266 | .ls | the Kingdom of Lesotho |
|
||||
| 124 |  | 利比里亚 | Liberia | LR | LBR | 430 | 231 | .lr | the Republic of Liberia |
|
||||
| 125 |  | 利比亚 | Libyan Arab Jamahiriya | LY | LBY | 434 | 218 | .ly | the Socialist People's Libyan Arab Jamahiriya |
|
||||
| 126 |  | 列支敦士登 | Liechtenstein | LI | LIE | 438 | 423 | .li | the Principality of Liechtenstein |
|
||||
| 127 |  | 立陶宛 | Lithuania | LT | LTU | 440 | 370 | .lt | the Republic of Lithuania |
|
||||
| 128 |  | 卢森堡 | Luxembourg | LU | LUX | 442 | 352 | .lu | the Grand Duchy of Luxembourg |
|
||||
| | M | | | | | | | | |
|
||||
| 129 |  | 澳门 | Macao | MO | MAC | 446 | 853 | .mo | Macao Special Administrative Region of China |
|
||||
| 130 |  | 北马其顿 | Macedonia | MK | MKD | 807 | 389 | .mk | the former Yugoslav Republic of Macedonia |
|
||||
| 131 |  | 马达加斯加 | Madagascar | MG | MDG | 450 | 261 | .mg | the Republic of Madagascar |
|
||||
| 132 |  | 马拉维 | Malawi | MW | MWI | 454 | 265 | .mw | the Republic of Malawi |
|
||||
| 133 |  | 马来西亚 | Malaysia | MY | MYS | 458 | 60 | .my | |
|
||||
| 134 |  | 马尔代夫 | Maldives | MV | MDV | 462 | 960 | .mv | the Republic of Maldives |
|
||||
| 135 |  | 马里 | Mali | ML | MLI | 466 | 223 | .ml | the Republic of Mali |
|
||||
| 136 |  | 马耳他 | Malta | MT | MLT | 470 | 356 | .mt | the Republic of Malta |
|
||||
| 137 |  | 马绍尔群岛 | Marshall Islands | MH | MHL | 584 | 692 | .mh | the Republic of the Marshall Islands |
|
||||
| 138 |  | 马提尼克 | Martinique | MQ | MTQ | 474 | 596 | .mq | |
|
||||
| 139 |  | 毛利塔尼亚 | Mauritania | MR | MRT | 478 | 222 | .mr | the Islamic Republic of Mauritania |
|
||||
| 140 |  | 毛里求斯 | Mauritius | MU | MUS | 480 | 230 | .mu | the Republic of Mauritius |
|
||||
| 141 |  | 马约特 | Mayotte | YT | MYT | 175 | 262 | .yt | |
|
||||
| 142 |  | 墨西哥 | Mexico | MX | MEX | 484 | 52 | .mx | the United Mexican States |
|
||||
| 143 |  | 密克罗尼西亚联邦 | Micronesia | FM | FSM | 583 | 691 | .fm | the Federated States of Micronesia |
|
||||
| 144 |  | 摩尔多瓦 | Moldova | MD | MDA | 498 | 373 | .md | the Republic of Moldova |
|
||||
| 145 |  | 摩纳哥 | Monaco | MC | MCO | 492 | 377 | .mc | the Principality of Monaco |
|
||||
| 146 |  | 蒙古 | Mongolia | MN | MNG | 496 | 976 | .mn | |
|
||||
| 147 |  | 黑山 | Montenegro | ME | MNE | 499 | 382 | .me | the Republic of Montenegro |
|
||||
| 148 |  | 蒙特塞拉特 | Montserrat | MS | MSR | 500 | 1 664 | .ms | |
|
||||
| 149 |  | 摩洛哥 | Morocco | MA | MAR | 504 | 212 | .ma | the Kingdom of Morocco |
|
||||
| 150 |  | 莫桑比克 | Mozambique | MZ | MOZ | 508 | 258 | .mz | the Republic of Mozambique |
|
||||
| 151 |  | 缅甸 | Myanmar | MM | MMR | 104 | 95 | .mm | the Union of Myanmar |
|
||||
| | N | | | | | | | | |
|
||||
| 152 |  | 纳米比亚 | Namibia | NA | NAM | 516 | 264 | .na | the Republic of Namibia |
|
||||
| 153 |  | 瑙鲁 | Nauru | NR | NRU | 520 | 674 | .nr | the Republic of Nauru |
|
||||
| 154 |  | 尼泊尔 | Nepal | NP | NPL | 524 | 977 | .np | |
|
||||
| 155 |  | 荷兰 | Netherlands | NL | NLD | 528 | 31 | .nl | the Kingdom of the Netherlands |
|
||||
| 156 |  | 荷属安的列斯 | Netherlands Antilles | AN | ANT | 530 | | | |
|
||||
| 157 |  | 新喀里多尼亚 | New Caledonia | NC | NCL | 540 | 687 | .nc | |
|
||||
| 158 |  | 新西兰 | New Zealand | NZ | NZL | 554 | 64 | .nz | |
|
||||
| 159 |  | 尼加拉瓜 | Nicaragua | NI | NIC | 558 | 505 | .ni | the Republic of Nicaragua |
|
||||
| 160 |  | 尼日尔 | Niger | NE | NER | 562 | 227 | .ne | the Republic of the Niger |
|
||||
| 161 |  | 尼日利亚 | Nigeria | NG | NGA | 566 | 234 | .ng | the Federal Republic of Nigeria |
|
||||
| 162 |  | 纽埃 | Niue | NU | NIU | 570 | 683 | .nu | the Republic of Niue |
|
||||
| 163 |  | 诺福克岛 | Norfolk Island | NF | NFK | 574 | 6723 | .nf | |
|
||||
| 164 |  | 北马里亚纳 | Northern Mariana Islands | MP | MNP | 580 | 1 670 | .mp | the Commonwealth of the Northern Mariana Islands |
|
||||
| 165 |  | 挪威 | Norway | NO | NOR | 578 | 47 | .no | the Kingdom of Norway |
|
||||
| | O | | | | | | | | |
|
||||
| 166 |  | 阿曼 | Oman | OM | OMN | 512 | 968 | .om | the Sultanate of Oman |
|
||||
| | P | | | | | | | | |
|
||||
| 167 |  | 巴基斯坦 | Pakistan | PK | PAK | 586 | 92 | .pk | the Islamic Republic of Pakistan |
|
||||
| 168 |  | 帕劳 | Palau | PW | PLW | 585 | 680 | .pw | the Republic of Palau |
|
||||
| 169 |  | 巴勒斯坦 | Palestinian Territory | PS | PSE | 275 | 970 | .ps | the Occupied Palestinian Territory |
|
||||
| 170 |  | 巴拿马 | Panama | PA | PAN | 591 | 507 | .pa | the Republic of Panama |
|
||||
| 171 |  | 巴布亚新几内亚 | Papua New Guinea | PG | PNG | 598 | 675 | | |
|
||||
| 172 |  | 巴拉圭 | Paraguay | PY | PRY | 600 | 595 | .py | the Republic of Paraguay |
|
||||
| 173 |  | 秘鲁 | Peru | PE | PER | 604 | 51 | .pe | the Republic of Peru |
|
||||
| 174 |  | 菲律宾 | Philippines | PH | PHL | 608 | 63 | .ph | the Republic of the Philippines |
|
||||
| 175 |  | 皮特凯恩 | Pitcairn | PN | PCN | 612 | 64 | .pn | |
|
||||
| 176 |  | 波兰 | Poland | PL | POL | 616 | 48 | .pl | the Republic of Poland |
|
||||
| 177 |  | 葡萄牙 | Portugal | PT | PRT | 620 | 351 | .pt | the Portuguese Republic |
|
||||
| 178 |  | 波多黎各 | Puerto Rico | PR | PRI | 630 | 1 787/939 | .pr | |
|
||||
| | Q | | | | | | | | |
|
||||
| 179 |  | 卡塔尔 | Qatar | QA | QAT | 634 | 974 | .qa | the State of Qatar |
|
||||
| | R | | | | | | | | |
|
||||
| 180 |  | 留尼汪 | Réunion | RE | REU | 638 | 262 | .re | |
|
||||
| 181 |  | 罗马尼亚 | Romania | RO | ROU | 642 | 40 | .ro | |
|
||||
| 182 |  | 俄罗斯联邦 | Russian Federation | RU | RUS | 643 | 7 | .ru | the Russian Federation |
|
||||
| 183 |  | 卢旺达 | Rwanda | RW | RWA | 646 | 250 | .rw | the Republic of Rwanda |
|
||||
| | S | | | | | | | | |
|
||||
| 184 |  | 圣赫勒拿 | Saint Helena | SH | SHN | 654 | 290 | .sh | |
|
||||
| 185 |  | 圣基茨和尼维斯 | Saint Kitts and Nevis | KN | KNA | 659 | 1 869 | .kn | |
|
||||
| 186 |  | 圣卢西亚 | Saint Lucia | LC | LCA | 662 | 1 758 | .lc | |
|
||||
| 187 |  | 圣皮埃尔和密克隆 | Saint Pierre and Miquelon | PM | SPM | 666 | 508 | .pm | |
|
||||
| 188 |  | 圣文森特和格林纳丁斯 | Saint Vincent and the Grenadines | VC | VCT | 670 | 1 784 | .vc | |
|
||||
| 189 |  | 萨摩亚 | Samoa | WS | WSM | 882 | 685 | .ws | the Independent State of Samoa |
|
||||
| 190 |  | 圣马力诺 | San Marino | SM | SMR | 674 | 378 | .sm | the Republic of San Marino |
|
||||
| 191 |  | 圣多美和普林西比 | Sao Tome and Principe | ST | STP | 678 | 239 | .st | the Democratic Republic of Sao Tome and Principe |
|
||||
| 192 |  | 沙特阿拉伯 | Saudi Arabia | SA | SAU | 682 | 966 | .sa | the Kingdom of Saudi Arabia |
|
||||
| 193 |  | 塞内加尔 | Senegal | SN | SEN | 686 | 221 | .sn | the Republic of Senegal |
|
||||
| 194 |  | 塞尔维亚 | Serbia | RS | SRB | 688 | 381 | .rs | the Republic of Serbia / ISO 3166.1-2006新增 |
|
||||
| 195 |  | 塞舌尔 | Seychelles | SC | SYC | 690 | 248 | .sc | the Republic of Seychelles |
|
||||
| 196 |  | 塞拉利昂 | Sierra Leone | SL | SLE | 694 | 232 | .sl | the Republic of Sierra Leone |
|
||||
| 197 |  | 新加坡 | Singapore | SG | SGP | 702 | 65 | .sg | the Republic of Singapore |
|
||||
| 198 |  | 斯洛伐克 | Slovakia | SK | SVK | 703 | 421 | .sk | the Slovak Republic |
|
||||
| 199 |  | 斯洛文尼亚 | Slovenia | SI | SVN | 705 | 386 | .si | the Republic of Slovenia |
|
||||
| 200 |  | 所罗门群岛 | Solomon Islands | SB | SLB | 090 | 677 | .sb | |
|
||||
| 201 |  | 索马里 | Somalia | SO | SOM | 706 | 252 | .so | the Somali Republic |
|
||||
| 202 |  | 南非 | South Africa | ZA | ZAF | 710 | 27 | .za | the Republic of South Africa |
|
||||
| 203 |  | 南乔治亚岛和南桑德韦奇岛 | South Georgia and the South Sandwich Islands | GS | SGS | 239 | 500 | .gs | |
|
||||
| 204 |  | 西班牙 | Spain | ES | ESP | 724 | 34 | .es | the Kingdom of Spain |
|
||||
| 205 |  | 斯里兰卡 | Sri Lanka | LK | LKA | 144 | 94 | .lk | the Democratic Socialist Republic of Sri Lanka |
|
||||
| 206 |  | 苏丹 | Sudan | SD | SDN | 736 | 249 | .sd | the Republic of the Sudan |
|
||||
| 207 |  | 苏里南 | Suriname | SR | SUR | 740 | 597 | .sr | the Republic of Suriname |
|
||||
| 208 |  | 斯瓦尔巴岛和扬马延岛 | Svalbard and Jan Mayen | SJ | SJM | 744 | 47 | .sj | |
|
||||
| 209 |  | 斯威士兰 | Swaziland | SZ | SWZ | 748 | 268 | .sz | the Kingdom of Swaziland |
|
||||
| 210 |  | 瑞典 | Sweden | SE | SWE | 752 | 46 | .se | the Kingdom of Sweden |
|
||||
| 211 |  | 瑞士 | Switzerland | CH | CHE | 756 | 41 | .ch | the Swiss Confederation |
|
||||
| 212 |  | 叙利亚 | Syrian Arab Republic | SY | SYR | 760 | 963 | .sy | the Syrian Arab Republic |
|
||||
| | T | | | | | | | | |
|
||||
| 213 |  | 台湾 | Taiwan,Province of China | TW | TWN | 158 | 886 | .tw | |
|
||||
| 214 |  | 塔吉克斯坦 | Tajikistan | TJ | TJK | 762 | 992 | .tj | the Republic of Tajikistan |
|
||||
| 215 |  | 坦桑尼亚 | Tanzania,United Republic of | TZ | TZA | 834 | 255 | .tz | the United Republic of Tanzania |
|
||||
| 216 |  | 泰国 | Thailand | TH | THA | 764 | 66 | .th | the Kingdom of Thailand |
|
||||
| 217 |  | 东帝汶 | Timor-Leste | TL | TLS | 626 | 670 | .tl | the Democratic Republic of Timor-Leste |
|
||||
| 218 |  | 多哥 | Togo | TG | TGO | 768 | 228 | .tg | the Togolese Republic |
|
||||
| 219 |  | 托克劳 | Tokelau | TK | TKL | 772 | 690 | .tk | |
|
||||
| 220 |  | 汤加 | Tonga | TO | TON | 776 | 676 | .to | the Kingdom of Tonga |
|
||||
| 221 |  | 特立尼达和多巴哥 | Trinidad and Tobago | TT | TTO | 780 | 1 868 | .tt | the Republic of Trinidad and Tobago |
|
||||
| 222 |  | 突尼斯 | Tunisia | TN | TUN | 788 | 216 | .tn | the Republic of Tunisia |
|
||||
| 223 |  | 土耳其 | Turkey | TR | TUR | 792 | | | the Republic of Turkey |
|
||||
| 224 |  | 土库曼斯坦 | Turkmenistan | TM | TKM | 795 | 993 | .tm | |
|
||||
| 225 |  | 特克斯和凯科斯群岛 | Turks and Caicos Islands | TC | TCA | 796 | 1 649 | .tc | |
|
||||
| 226 |  | 图瓦卢 | Tuvalu | TV | TUV | 798 | 688 | .tv | |
|
||||
| | U | | | | | | | | |
|
||||
| 227 |  | 乌干达 | Uganda | UG | UGA | 800 | 256 | .ug | the Republic of Uganda |
|
||||
| 228 |  | 乌克兰 | Ukraine | UA | UKR | 804 | 380 | .ua | |
|
||||
| 229 |  | 阿联酋 | United Arab Emirates | AE | ARE | 784 | 971 | .ae | the United Arab Emirates |
|
||||
| 230 |  | 英国 | United Kingdom | GB | GBR | 826 | 44 | .gb | the United Kingdom of Great Britain and Northern Ireland |
|
||||
| 231 |  | 美国 | United States | US | USA | 840 | 1 | .us | the United States of America |
|
||||
| 232 |  | 美国本土外小岛屿 | United States Minor Outlying Islands | UM | UMI | 581 | 1 808 | .um | |
|
||||
| 233 |  | 乌拉圭 | Uruguay | UY | URY | 858 | 598 | .uy | the Eastern Republic of Uruguay |
|
||||
| 234 |  | 乌兹别克斯坦 | Uzbekistan | UZ | UZB | 860 | 998 | .uz | the Republic of Uzbekistan |
|
||||
| | V | | | | | | | | |
|
||||
| 235 |  | 瓦努阿图 | Vanuatu | VU | VUT | 548 | 678 | .vu | the Republic of Vanuatu |
|
||||
| 236 |  | 委内瑞拉 | Venezuela | VE | VEN | 862 | 58 | .ve | the Bolivarian Republic of Venezuela |
|
||||
| 237 |  | 越南 | Viet Nam | VN | VNM | 704 | 84 | .vn | the Socialist Republic of Viet Nam |
|
||||
| 238 |  | 英属维尔京群岛 | Virgin Islands (British) | VG | VGB | 092 | 1 284 | .vg | British Virgin Islands |
|
||||
| 239 |  | 美属维尔京群岛 | Virgin Islands (U.S.) | VI | VIR | 850 | 1 340 | .vi | the Virgin Islands of the United States |
|
||||
| | W | | | | | | | | |
|
||||
| 240 |  | 瓦利斯和富图纳 | Wallis and Futuna | WF | WLF | 876 | 681 | .wf | Wallis and Futuna Islands |
|
||||
| 241 |  | 西撒哈拉 | Western Sahara | EH | ESH | 732 | 212 28 | .eh | |
|
||||
| | Y | | | | | | | | |
|
||||
| 242 |  | 也门 | Yemen | YE | YEN | 887 | 967 | .ye | the Republic of Yemen |
|
||||
| | Z | | | | | | | | |
|
||||
| 243 |  | 赞比亚 | Zambia | ZM | ZMB | 894 | 260 | .zm | the Republic of Zambia |
|
||||
| 244 |  | 津巴布韦 | Zimbabwe | ZW | ZWE | 716 | 263 | .zw | the Republic of Zimbabwe |
|
||||
105
QuantumultX/rewrite/weibo.snippet
Normal file
105
QuantumultX/rewrite/weibo.snippet
Normal file
@ -0,0 +1,105 @@
|
||||
#!name=微博&国际版去广告
|
||||
#!desc=整合了@zmqcherish和@Keywos的去广告配置,根据UA判断微博版本去广告
|
||||
#!author=奶思
|
||||
#!homepage=https://github.com/fmz200/wool_scripts
|
||||
#!icon=https://raw.githubusercontent.com/fmz200/wool_scripts/main/icons/gif/naisi-01.gif
|
||||
#!raw-url=https://github.com/fmz200/wool_scripts/raw/main/QuantumultX/rewrite/weibo.snippet
|
||||
#!tg-group=https://t.me/lanjieguanggao
|
||||
#!category=奶思的模块
|
||||
#!tag = 去广告, 微博, 奶思
|
||||
#!system = iOS, iPadOS
|
||||
#!system_version =
|
||||
#!loon_version =
|
||||
#!date=2025-06-29 23:00:00
|
||||
#############################################
|
||||
# > "reject" 策略返回 HTTP 状态码 404,不附带任何额外内容
|
||||
# > "reject-200" 策略返回 HTTP 状态码 200,不附带任何额外内容
|
||||
# > "reject-img" 策略返回 HTTP 状态码 200,同时附带 1px gif
|
||||
# > "reject-dict" 策略返回 HTTP 状态码 200,同时附带一个空的 JSON 对象
|
||||
# > "reject-array" 策略返回 HTTP 状态码 200,同时附带一个空的 JSON 数组
|
||||
#############################################
|
||||
|
||||
# hostname = api.weibo.cn, mapi.weibo.com, *.uve.weibo.com, new.vip.weibo.cn, *api.weibo.cn, sdkapp.uve.weibo.com
|
||||
hostname = *.weibo.cn, *.weibo.com, weibo.com
|
||||
|
||||
############################################# 微博国际版去广告 #############################################
|
||||
# User-Agent: WeiboOverseas/6.3.8 (com.weibo.international; build:6.3.8.1; iOS 17.3.0) Alamofire/6.3.8
|
||||
|
||||
# 热门视频 | 热推荐
|
||||
^https?:\/\/api\.weibo\.cn\/\d\/(cardlist\?v_f=\d|ad\/weibointl\?) WeiboOverseas url-and-header echo-response text/html echo-response https://raw.githubusercontent.com/fmz200/wool_scripts/main/Scripts/template/reject-dict.json
|
||||
^https?:\/\/weibointl\.api\.weibo\.cn\/portal\.php\?a=hot_search_users WeiboOverseas url-and-header echo-response text/html echo-response https://raw.githubusercontent.com/fmz200/wool_scripts/main/Scripts/template/reject-dict.json
|
||||
|
||||
# 趋势页 | 开屏广告 | 用户中心 | 热搜置顶 | 我的页面 尊享专属 | 瀑布流去广告
|
||||
^https?:\/\/weibointl\.api\.weibo\.cn\/portal\.php\?(ct=(feed&a=trends|user&a=get_searching_info)|a=(get_coopen_ads|user_center|search_topic|open_app&auth|icon_center)) WeiboOverseas url-and-header script-response-body https://raw.githubusercontent.com/Keywos/rule/master/script/weibo_us/js/index.js
|
||||
^https?:\/\/api\.weibo\.cn\/\d\/statuses\/.*timeline WeiboOverseas url-and-header script-response-body https://raw.githubusercontent.com/Keywos/rule/master/script/weibo_us/js/index.js
|
||||
^https?:\/\/sdkapp\.uve\.weibo\.com\/interface\/sdk\/sdkad\.php WeiboOverseas url-and-header script-response-body https://raw.githubusercontent.com/Keywos/rule/master/script/weibo_us/js/index.js
|
||||
|
||||
# 私信中绿洲的擦边诱导推广
|
||||
^https:\/\/weibointl\.api\.weibo\.cn\/portal\.php\?a=treehole&auth= url reject-dict
|
||||
|
||||
|
||||
############################################# 微博国内版去广告 #############################################
|
||||
# User-Agent: Weibo/83823 (iPhone; iOS 17.2; Scale/3.00)
|
||||
|
||||
^https:\/\/api\.weibo\.cn\/2\/!\/huati\/discovery_home_bottom_channels Weibo url-and-header reject-dict
|
||||
^https:\/\/api\.weibo\.cn\/2\/!\/chaohua\/discovery\/home_bottom\/switch Weibo url-and-header reject-dict
|
||||
^https:\/\/api\.weibo\.cn\/2\/!\/was\/finder\/searchbarchange\? Weibo url-and-header reject-dict
|
||||
|
||||
# 似乎没用的请求,收集用户信息
|
||||
^https?:\/\/api\.weibo\.c(n|om)\/2\/(push\/active|client\/addlog_batch|ad\/preload) Weibo url-and-header script-request-body https://raw.githubusercontent.com/fmz200/wool_scripts/main/Scripts/template/req_replace_body.js
|
||||
|
||||
# 屏蔽首页左上角每日的弹窗tips
|
||||
^https?:\/\/m?api\.weibo\.c(n|om)\/\d/push/daily Weibo url-and-header reject-dict
|
||||
|
||||
# 超话按钮的提示
|
||||
^https?:\/\/m?api\.weibo\.c(n|om)\/2\/!\/huati\/discovery_home_bottom_getdotinfo Weibo url-and-header reject
|
||||
|
||||
# 微博移除发现页广告
|
||||
^https?:\/\/m?api\.weibo\.c(n|om)\/2\/search\/(finder|container_timeline|container_discover)\? Weibo url-and-header script-response-body https://raw.githubusercontent.com/fmz200/wool_scripts/main/Scripts/weibo/weibo_ads.js
|
||||
|
||||
# 微博热搜页面广告
|
||||
^https?:\/\/m?api\.weibo\.c(n|om)\/2\/(page|flowpage)\? Weibo url-and-header script-response-body https://raw.githubusercontent.com/fmz200/wool_scripts/main/Scripts/weibo/weibo_ads.js
|
||||
|
||||
# 微博话题页面广告
|
||||
^https?:\/\/m?api\.weibo\.c(n|om)\/2\/searchall\? Weibo url-and-header script-response-body https://raw.githubusercontent.com/fmz200/wool_scripts/main/Scripts/weibo/weibo_ads.js
|
||||
|
||||
# 微博超话页面广告
|
||||
^https?:\/\/m?api\.weibo\.c(n|om)\/2\/statuses\/container_timeline_topicpage\? Weibo url-and-header script-response-body https://raw.githubusercontent.com/fmz200/wool_scripts/main/Scripts/weibo/weibo_ads.js
|
||||
|
||||
# 微博超话tab页净化
|
||||
^https?:\/\/m?api\.weibo\.c(n|om)\/2\/statuses\/container_timeline_topic\? Weibo url-and-header script-response-body https://raw.githubusercontent.com/fmz200/wool_scripts/main/Scripts/weibo/weibo_ads.js
|
||||
|
||||
# 微博详情页面广告
|
||||
^https?:\/\/m?api\.weibo\.c(n|om)\/2\/statuses\/extend\? Weibo url-and-header script-response-body https://raw.githubusercontent.com/fmz200/wool_scripts/main/Scripts/weibo/weibo_ads.js
|
||||
^https?:\/\/m?api\.weibo\.c(n|om)\/2\/statuses\/container_detail\? Weibo url-and-header script-response-body https://raw.githubusercontent.com/fmz200/wool_scripts/main/Scripts/weibo/weibo_ads.js
|
||||
|
||||
# 微博最顶部的tab页分组
|
||||
^https?:\/\/m?api\.weibo\.c(n|om)\/2\/groups\/allgroups\/v2 Weibo url-and-header script-response-body https://raw.githubusercontent.com/fmz200/wool_scripts/main/Scripts/weibo/weibo_ads.js
|
||||
|
||||
# 微博评论区广告
|
||||
^https?:\/\/m?api\.weibo\.c(n|om)\/2\/comments\/mix_comments\? Weibo url-and-header script-response-body https://raw.githubusercontent.com/fmz200/wool_scripts/main/Scripts/weibo/weibo_ads.js
|
||||
^https?:\/\/m?api\.weibo\.c(n|om)\/2\/statuses\/container_detail_comment\? Weibo url-and-header script-response-body https://raw.githubusercontent.com/fmz200/wool_scripts/main/Scripts/weibo/weibo_ads.js
|
||||
|
||||
# 转发区广告
|
||||
^https?:\/\/m?api\.weibo\.c(n|om)\/2\/statuses\/container_detail_forward\? Weibo url-and-header script-response-body https://raw.githubusercontent.com/fmz200/wool_scripts/main/Scripts/weibo/weibo_ads.js
|
||||
|
||||
# 微博去广告以及去除各部分推广模块 - cherish
|
||||
^https?:\/\/m?api\.weibo\.c(n|om)/2/(cardlist|searchall|page|messageflow|statuses/(unread_)?friends(/|_)timeline|groups/timeline|statuses/(container_timeline|container_timeline_hot|unread_hot_timeline|extend|video_mixtimeline|repost_timeline)|profile/(me|container_timeline)|video/(community_tab|remind_info|tiny_stream_video_list)|checkin/show|\!/live/media_homelist|comments/build_comments|container/get_item) Weibo url-and-header script-response-body https://raw.githubusercontent.com/fmz200/wool_scripts/main/Scripts/weibo/weibo_main.js
|
||||
|
||||
# 删除微博开屏广告 - cherish
|
||||
^https?:\/\/bootrealtime\.uve\.weibo\.com\/v\d\/ad\/realtime Weibo url-and-header reject-dict
|
||||
^https?:\/\/bootpreload\.uve\.weibo\.com\/v\d\/ad\/preload Weibo url-and-header reject-dict
|
||||
^https?:\/\/sdkapp\.uve\.weibo\.com\/interface\/sdk\/(get-lbs-cell-info\.php|sdkconfig\.php) Weibo url-and-header reject-dict
|
||||
^https?:\/\/(sdk|wb)app\.uve\.weibo\.com(/interface/sdk/sdkad.php|/wbapplua/wbpullad.lua) Weibo url-and-header script-response-body https://raw.githubusercontent.com/zmqcherish/proxy-script/main/weibo_launch.js
|
||||
|
||||
# 自定义tab皮肤
|
||||
^https?:\/\/api\.weibo\.c(n|om)\/2\/!\/client\/light_skin Weibo url-and-header script-response-body https://raw.githubusercontent.com/zmqcherish/proxy-script/main/weibo_main.js
|
||||
|
||||
# 非会员设置tab皮肤 - cherish
|
||||
^https?:\/\/new\.vip\.weibo\.c(n|om)\/littleskin\/preview Weibo url-and-header script-response-body https://raw.githubusercontent.com/zmqcherish/proxy-script/main/weibo_main.js
|
||||
|
||||
# 解锁微博会员APP图标
|
||||
^https?:\/\/new\.vip\.weibo\.c(n|om)/aj/appicon/list Weibo url-and-header script-response-body https://github.com/fmz200/wool_scripts/raw/main/Scripts/weibo/weibo_vip.js
|
||||
|
||||
# 奥运奖牌榜横幅广告
|
||||
# ^https:\/\/datumogs\.sports\.weibo\.c(n|om)\/wb\/api\/medal\/all\? url response-body "Banner":\[.+\] response-body "Banner":[]
|
||||
Reference in New Issue
Block a user