├── Cwkj.snippet ├── xTerm256.snippet ├── 18hlw.snippet ├── MTB.js ├── SF.snippet ├── MeiTuanNoAd.js ├── TH.js ├── TH.snippet ├── Cwkj.js ├── Keep.snippet ├── Keep.js ├── iQIYI.snippet ├── TB.snippet ├── HP.js ├── 18hlw.js ├── HP.snippet ├── T3.js ├── KuAn.snippet ├── LKXDYF.js ├── Smzdm.snippet ├── SLY.js ├── T3.snippet ├── TaskHotBiliVideo.js ├── Soul.js ├── Soul.snippet ├── TB.js ├── Pinduoduo.snippet ├── SoulSing.js ├── Didichuxing.snippet ├── WxPureDominion.snippet ├── Didichuxing.js ├── BPZJ.js ├── XMLYVIP.js ├── iQIYI.js ├── Smzdm.js ├── LaiChong.js └── QQMusic.js /Cwkj.snippet: -------------------------------------------------------------------------------- 1 | #!name = 畅玩空间 2 | #!author = 怎么肥事 3 | #!update = 2024-04-26 23:08 4 | 5 | ^https:\/\/play\.wo1wan\.com\/nextgame\/igwuser\/(userinfo|useropeninfo) url script-response-body https://raw.githubusercontent.com/ZenmoFeiShi/Qx/main/Cwkj.js 6 | 7 | 8 | 9 | 10 | hostname = play.wo1wan.com -------------------------------------------------------------------------------- /xTerm256.snippet: -------------------------------------------------------------------------------- 1 | //2025/10/18 2 | #Name:xTerm256调试解锁🔓会员 3 | #Author:怎么肥事 4 | #使用方法:打开重写进软件恢复购买 5 | ^https:\/\/buy\.itunes\.apple\.com\/verifyReceipt url jsonjq-response-body '.receipt.in_app[].expires_date_ms = "4092599349000" | .latest_receipt_info[].expires_date_ms = "4092599349000" | .pending_renewal_info[].auto_renew_status = "1"' 6 | 7 | hostname = buy.itunes.apple.com 8 | -------------------------------------------------------------------------------- /18hlw.snippet: -------------------------------------------------------------------------------- 1 | #!name = 黑料不打烊净化首页和播放页所有广告 2 | #!author = @fishdown、怎么肥事 3 | #!update = 2024-11-29 01:37 4 | 5 | ^https:\/\/18hlw\.com\/?$ url script-response-body https://raw.githubusercontent.com/ZenmoFeiShi/Qx/main/18hlw.js 6 | ^https:\/\/18hlw\.com\/archives\/\d+\.html url script-response-body https://raw.githubusercontent.com/ZenmoFeiShi/Qx/main/18hlw.js 7 | 8 | 9 | 10 | 11 | hostname = 18hlw.com -------------------------------------------------------------------------------- /MTB.js: -------------------------------------------------------------------------------- 1 | /* 2 | @Name:磨题帮解锁🔓会员 3 | @Author:怎么肥事 4 | 使用方法:打开重写进软件,退出登录再重新登录 5 | [rewrite_local] 6 | ^https:\/\/motibang\.com:8001\/api\/1\/user\/info url script-response-body https://raw.githubusercontent.com/ZenmoFeiShi/Qx/refs/heads/main/MTB.js 7 | 8 | [MITM] 9 | hostname = motibang.com 10 | */ 11 | let obj = JSON.parse($response.body); 12 | 13 | obj.vip_plan = 1; 14 | obj.vip_days_left = 999; 15 | obj.is_paid = 1; 16 | obj.is_individual_vip = 1; 17 | obj.had_been_paid = 1; 18 | 19 | $done({ body: JSON.stringify(obj) }); 20 | -------------------------------------------------------------------------------- /SF.snippet: -------------------------------------------------------------------------------- 1 | #!name = 顺丰app净化 2 | #!author = 怎么肥事 3 | #!update = 2024-02-01 4 | 5 | ^https:\/\/ccsp-egmas\.sf-express\.com\/cx-app-video\/video\/app\/video\/labelClusterList url reject-dict 6 | 7 | ^https:\/\/ucmp\.sf-express\.com\/proxy\/esgcempcore\/memberGoods\/pointMallService\/goodsList url reject-dict 8 | 9 | ^https:\/\/ccsp-egmas\.sf-express\.com\/cx-app-base\/base\/app\/ad\/queryInfoFlow url reject-dict 10 | 11 | ^https:\/\/ccsp-egmas\.sf-express\.com\/cx-app-base\/base\/app\/bms\/queryRecommend url reject-dict 12 | 13 | hostname = ucmp.sf-express.com,ccsp-egmas.sf-express.com 14 | -------------------------------------------------------------------------------- /MeiTuanNoAd.js: -------------------------------------------------------------------------------- 1 | 2 | 3 | let body = $response.body; 4 | 5 | try { 6 | let obj = JSON.parse(body); 7 | 8 | if (obj?.data) { 9 | if (Array.isArray(obj.data)) { 10 | obj.data = obj.data.filter(item => { 11 | if (item && item.name) { 12 | return ["首页", "神券", "我的"].includes(item.name); 13 | } 14 | return false; 15 | }); 16 | } else { 17 | if (obj.data.oneCentBuy) { 18 | delete obj.data.oneCentBuy; 19 | } 20 | } 21 | } 22 | 23 | body = JSON.stringify(obj); 24 | } catch (e) { 25 | console.log("处理响应出错: " + e); 26 | } 27 | 28 | $done({ body }); 29 | -------------------------------------------------------------------------------- /TH.js: -------------------------------------------------------------------------------- 1 | // 2024.07.05 15:23 2 | const url = $request.url; 3 | let obj = JSON.parse($response.body); 4 | 5 | 6 | if (url.includes("/personalCenter/getCmsModuleList")) { 7 | const idsToDelete = [90, 17, 13, 35, 10, 7]; 8 | const mainTitlesToDelete = ["保养超值卡", "特价团购", "合作加盟", "抖音团购券兑换", "集团客户", "美团兑换", "评价途虎"]; 9 | 10 | obj.data.cmsList = obj.data.cmsList.filter(item => 11 | !idsToDelete.includes(item.moduleTypeId) && !mainTitlesToDelete.includes(item.mainTitle)); 12 | } 13 | 14 | if (url.includes("/shopTab/getModuleForC")) { 15 | delete obj.data.bannersList; 16 | 17 | if (obj && obj.data && obj.data.cmsList) { 18 | obj.data.cmsList = obj.data.cmsList.reduce((acc, module) => { 19 | if (module.bottomMargin !== 12) { 20 | acc.push(module); 21 | } 22 | return acc; 23 | }, []); 24 | } 25 | } 26 | 27 | $done({ body: JSON.stringify(obj) }); 28 | -------------------------------------------------------------------------------- /TH.snippet: -------------------------------------------------------------------------------- 1 | #!name = 途虎养车净化 2 | #!author = 怎么肥事 3 | #!update = 2024-07-05 15:15 4 | 5 | ^https:\/\/mkt-gateway\.tuhu\.cn\/mkt-scene-marketing-service\/api\/scene\/queryScheme url reject-dict 6 | ^https:\/\/mkt-gateway\.tuhu\.cn\/mkt-push-message-box\/banner\/cms\/getIndexBanner url reject-dict 7 | ^https:\/\/cl-gateway\.tuhu\.cn\/cl-common-api\/api\/personalCenter\/getAutoSuperConfig url reject-dict 8 | ^https:\/\/mkt-gateway\.tuhu\.cn\/mkt-cms\/circle\/recommend\/v3 url reject-dict 9 | ^https:\/\/cl-gateway\.tuhu\.cn\/cl-shop-api\/shopTab\/getModuleForC url script-response-body https://raw.githubusercontent.com/ZenmoFeiShi/Qx/main/TH.js 10 | ^https:\/\/mkt-gateway\.tuhu\.cn\/mlp-product-search-api\/search\/helper\/defaultAndHotWord url reject-dict 11 | ^https:\/\/cl-gateway\.tuhu\.cn\/cl-common-api\/api\/personalCenter\/getCmsModuleList url script-response-body https://raw.githubusercontent.com/ZenmoFeiShi/Qx/main/TH.js 12 | 13 | 14 | 15 | 16 | hostname = mkt-gateway.tuhu.cn, cl-gateway.tuhu.cn -------------------------------------------------------------------------------- /Cwkj.js: -------------------------------------------------------------------------------- 1 | var body = $response.body; 2 | var url = $request.url; 3 | 4 | const path1 = "/nextgame/igwuser/userinfo"; 5 | const path2 = "/nextgame/igwuser/useropeninfo"; 6 | let obj; 7 | 8 | if (url.indexOf(path1) !== -1) { 9 | obj = JSON.parse(body); 10 | obj.info.LevelInfo.Level = 999; // 修改Level 11 | obj.info.LevelInfo.VipLevel = 8; // 修改VipLevel 12 | obj.info.LevelInfo.Svip = 8; // 修改Svip 13 | obj.info.LevelInfo.VipExpires = "2099-01-01T00:00:00Z"; // 修改VipExpires 14 | obj.info.LevelInfo.SVipExpires = "2099-01-01T00:00:00Z"; // 修改SVipExpires 15 | body = JSON.stringify(obj); 16 | } else if (url.indexOf(path2) !== -1) { 17 | obj = JSON.parse(body); 18 | obj.data.LevelInfo.Level = 999; // 修改Level 19 | obj.data.LevelInfo.VipLevel = 8; // 修改VipLevel 20 | obj.data.LevelInfo.Svip = 8; // 修改Svip 21 | obj.data.LevelInfo.VipExpires = "2099-01-01T00:00:00Z"; // 修改VipExpires 22 | obj.data.LevelInfo.SVipExpires = "2099-01-01T00:00:00Z"; // 修改SVipExpires 23 | body = JSON.stringify(obj); 24 | } 25 | 26 | $done({body}); 27 | -------------------------------------------------------------------------------- /Keep.snippet: -------------------------------------------------------------------------------- 1 | #!name = Keep净化 2 | #!author = 怎么肥事 3 | #!update = 2025-07-19 4 | 5 | # Keep分流 6 | host, hc-ssp.sm.cn, reject 7 | host, httpdns.calorietech.com, reject 8 | 9 | ^https:\/\/api\.gotokeep\.com\/messenger\/v\d\/conversations\/unread url reject-dict 10 | ^https:\/\/kad\.gotokeep\.com\/op-engine-webapp\/v\d\/ad url reject-dict 11 | ^https:\/\/api\.gotokeep\.com\/op-engine-webapp\/v\d\/ad\/preload url reject-dict 12 | ^https:\/\/api\.gotokeep\.com\/search\/v\d\/hotHashtag\/list url reject-dict 13 | ^https:\/\/api\.gotokeep\.com\/search\/v\d\/hotCourse\/list url reject-dict 14 | ^https:\/\/api\.gotokeep\.com\/search\/v\d\/hotword\/list url reject-dict 15 | ^https:\/\/api\.gotokeep\.com\/search\/v\d\/default\/keyword\/list url reject-dict 16 | ^https:\/\/api\.gotokeep\.com\/athena\/v\d\/people\/my url script-response-body https://raw.githubusercontent.com/ZenmoFeiShi/Qx/main/Keep.js 17 | ^https:\/\/api\.gotokeep\.com\/config\/v\d\/basic url script-response-body https://raw.githubusercontent.com/ZenmoFeiShi/Qx/main/Keep.js 18 | 19 | 20 | 21 | 22 | hostname = kad.gotokeep.com,42.187.199.248,api.gotokeep.com -------------------------------------------------------------------------------- /Keep.js: -------------------------------------------------------------------------------- 1 | // 2025-05-18 21:07 2 | const url = $request.url; 3 | let obj = JSON.parse($response.body); 4 | 5 | if (url.includes("/config/v3/basic")) { 6 | if (obj.data && obj.data.coursePageConfigs && obj.data.coursePageConfigs.courseTabs) { 7 | obj.data.coursePageConfigs.courseTabs = obj.data.coursePageConfigs.courseTabs.filter(tab => { 8 | return tab.name !== "直播" && tab.name !== "会员"; 9 | }); 10 | } 11 | 12 | if (obj.data && obj.data.bottomBarControl && obj.data.bottomBarControl.tabs) { 13 | obj.data.bottomBarControl.tabs = obj.data.bottomBarControl.tabs.filter(tab => { 14 | return tab.name !== "商城" && tab.name !== "课程" && tab.name !== "今日"; 15 | }); 16 | } 17 | } 18 | 19 | if (url.includes("/athena/v9/people/my")) { 20 | delete obj.data.memberInfo; 21 | } 22 | 23 | if (obj.data && obj.data.groupTags) { 24 | obj.data.groupTags = obj.data.groupTags.filter(tagGroup => { 25 | return !tagGroup.tags.some(tag => { 26 | const tagsToRemove = ["订单与钱包", "我的团队", "帮助中心"]; 27 | return tagsToRemove.includes(tag.name); 28 | }); 29 | }); 30 | } 31 | 32 | $done({ body: JSON.stringify(obj) }); 33 | -------------------------------------------------------------------------------- /iQIYI.snippet: -------------------------------------------------------------------------------- 1 | #!name = 爱奇艺净化 2 | #!author = 怎么肥事 3 | #!update = 2024-02-22 22:31 4 | 5 | ^https:\/\/comment-card\.iqiyi\.com\/views_comment\/3\.0\/long_video_comments url script-response-body https://raw.githubusercontent.com/ZenmoFeiShi/Qx/main/iQIYI.js 6 | ^https:\/\/cards\.iqiyi\.com\/(waterfall|views_(search|category|home)\/3\.0\/(hot_query_search|category_home|feed|qy_home)|views_plt\/3\.0\/player_tabs_v2) url script-response-body https://raw.githubusercontent.com/ZenmoFeiShi/Qx/main/iQIYI.js 7 | ^https?:\/\/api\.iqiyi\.com\/3f4\/(cards\.iqiyi\.com\/views_search\/3\.0\/hot_query_search|iface2\.iqiyi\.com\/(views\/3\.0\/(home_top_menu|bottom_theme)|views_pop\/3\.0\/pop_home\/1|aggregate\/3\.0\/getMyMenus)) url script-response-body https://raw.githubusercontent.com/ZenmoFeiShi/Qx/main/iQIYI.js 8 | ^https:\/\/iface2\.iqiyi\.com\/aggregate\/3\.0\/getMyMenus url script-response-body https://raw.githubusercontent.com/ZenmoFeiShi/Qx/main/iQIYI.js 9 | ^https:\/\/iface2\.iqiyi\.com\/views\/3\.0\/(home_top_menu|bottom_theme) url script-response-body https://raw.githubusercontent.com/ZenmoFeiShi/Qx/main/iQIYI.js 10 | ^https:\/\/(?:api\.iqiyi\.com\/3f4\/)?iface2\.iqiyi\.com\/(?:aggregate|views_pop)\/\d\.\d\/(?:siri_suggest|pop_control) url reject-dict 11 | https?:\/\/search\.video\.(?:iqiyi|qiyi)\.com\/q url reject-dict 12 | ^https:\/\/.+\.iqiyi\.com\/mixer url reject-dict 13 | 14 | hostname = -i.vip.iqiyi.com, *.iqiyi.com 15 | -------------------------------------------------------------------------------- /TB.snippet: -------------------------------------------------------------------------------- 1 | #!name = 贴吧净化 2 | #!author = 怎么肥事、app2smile、可莉 3 | #!update = 2025-03-23 09:52 4 | 5 | host, afd.baidu.com, reject 6 | host, mobads.baidu.com, reject 7 | 8 | ^https:\/\/tiebac\.baidu\.com\/c\/u\/chat\/getChatSubscriptionList url reject-dict 9 | ^https:\/\/tiebac\.baidu\.com\/c\/f\/search\/discover url reject-dict 10 | ^https:\/\/tiebac\.baidu\.com\/c\/f\/forum\/forumGuide url reject-dict 11 | ^https:\/\/tiebac\.baidu\.com\/livefeed\/feed url script-response-body https://raw.githubusercontent.com/ZenmoFeiShi/Qx/main/TB.js 12 | ^https:\/\/tiebac\.baidu\.com\/c\/f\/sidebar\/home url script-response-body https://raw.githubusercontent.com/ZenmoFeiShi/Qx/main/TB.js 13 | ^https:\/\/tiebac\.baidu\.com\/c\/u\/user\/profile url script-response-body https://raw.githubusercontent.com/ZenmoFeiShi/Qx/main/TB.js 14 | ^https:\/\/tieba\.baidu\.com\/c\/f\/frs\/frsBottom url script-response-body https://raw.githubusercontent.com/ZenmoFeiShi/Qx/main/TB.js 15 | ^http(s:\/\/tiebac|:\/\/c\.tieba)\.baidu\.com\/(c\/f\/(frs\/(page|threadlist|generalTabList)|pb\/page|excellent\/personalized)$|tiebaads\/commonbatch|c\/s\/sync$) url script-response-body https://raw.githubusercontent.com/app2smile/rules/master/js/tieba-json.js 16 | ^http(s:\/\/tiebac|:\/\/c\.tieba)\.baidu\.com\/c\/f\/(frs\/(page|threadlist|generalTabList)|pb\/page|excellent\/personalized)\?cmd url script-response-body https://raw.githubusercontent.com/app2smile/rules/master/js/tieba-proto.js 17 | 18 | 19 | hostname = tieba.baidu.com, tiebac.baidu.com -------------------------------------------------------------------------------- /HP.js: -------------------------------------------------------------------------------- 1 | // 2024-06-14 11:04 2 | const url = $request.url; 3 | let obj = JSON.parse($response.body); 4 | 5 | if (url.includes("/buffer/hotList")) { 6 | delete obj.result.topBanner; 7 | } 8 | 9 | if (url.includes("/mang/preview/banners")) { 10 | delete obj.data; 11 | } 12 | 13 | if (url.includes("/bbsallapi/lego/data")) { 14 | obj.data.cards.forEach(card => { 15 | if (card.code === "multiIcon") { 16 | const titlesToRemove = ["个性换肤", "专家预测", "邀请好友", "版主中心", "JRs战术板", "草稿箱" , "58同城"]; 17 | if (card.components && card.components.length > 0) { 18 | card.components = card.components.filter(component => { 19 | return !(component.data && titlesToRemove.includes(component.data.title)); 20 | }); 21 | } 22 | } 23 | }); 24 | } 25 | 26 | if (obj.data && obj.data.cards) { 27 | obj.data.cards = obj.data.cards.filter(card => { 28 | if (card.components && card.components.length > 0) { 29 | return !card.components.some(component => component.data && component.data.title === "我的应用"); 30 | } 31 | return true; 32 | }); 33 | } 34 | 35 | if (url.includes("/bplapi/user/v1/more")) { 36 | if (obj.result && obj.result.vipInfo && obj.result.vipInfo.textInfo) { 37 | delete obj.result.vipInfo.textInfo; 38 | } 39 | if (obj.result && obj.result.vipInfo) { 40 | delete obj.result.vipInfo; 41 | } 42 | } 43 | 44 | $done({ body: JSON.stringify(obj) }); -------------------------------------------------------------------------------- /18hlw.js: -------------------------------------------------------------------------------- 1 | // 2024.11.29 01:33 2 | 3 | let body = $response.body; 4 | const url = $request.url; 5 | 6 | // 删除广告块 7 | body = body.replace(/