From 0d12f67a7fef3e95e78b7e8ba464f55c3161a429 Mon Sep 17 00:00:00 2001 From: jiuqianyuan <39406781+jiuqianyuan@users.noreply.github.com> Date: Thu, 16 Nov 2023 21:42:23 +0800 Subject: [PATCH] =?UTF-8?q?feat(=E6=AD=AA=E9=BA=A6=E9=9C=B8=E7=8E=8B?= =?UTF-8?q?=E9=A4=90):=20=E5=BC=80=E5=B1=8F=E5=B9=BF=E5=91=8A=E3=80=81?= =?UTF-8?q?=E5=B9=BF=E5=91=8A=E5=BC=B9=E7=AA=97=20(#2158)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * feat(歪麦霸王餐):开屏广告、广告弹窗 * 格式更正 * Update com.waimaiii.waimaiii.ts * chore(actions): check_format_lint --------- Co-authored-by: github-actions[bot] close #2156 --- src/apps/com.waimaiii.waimaiii.ts | 45 +++++++++++++++++++++++++++++++ 1 file changed, 45 insertions(+) create mode 100644 src/apps/com.waimaiii.waimaiii.ts diff --git a/src/apps/com.waimaiii.waimaiii.ts b/src/apps/com.waimaiii.waimaiii.ts new file mode 100644 index 00000000..46d4d286 --- /dev/null +++ b/src/apps/com.waimaiii.waimaiii.ts @@ -0,0 +1,45 @@ +import { defineAppConfig } from '../types'; + +export default defineAppConfig({ + id: 'com.waimaiii.waimaiii', + name: '歪麦霸王餐', + groups: [ + { + key: 0, + name: '开屏广告', + matchTime: 10000, + actionMaximum: 1, + resetMatch: 'app', + rules: [ + { + key: 0, + name: '【跳过+倒计时】型', + quickFind: true, + matches: '[text*="跳过"][text.length<=10]', + snapshotUrls: 'https://i.gkd.li/import/13346166', + }, + { + key: 1, + name: '【圆圈跳过】型-穿山甲SDK', + matches: '[id="com.byted.pangle:id/tt_splash_skip_btn"]', + snapshotUrls: 'https://i.gkd.li/import/13346451', + }, + ], + }, + { + key: 3, + name: '广告弹窗', + matchTime: 10000, + actionMaximum: 1, + resetMatch: 'app', + activityIds: 'com.sangshen.ad_jg_flutter_sdk.SplashAdActivity', + rules: [ + { + matches: + 'View > View[childCount=2] > ImageView[clickable=true] + ImageView[id=""][clickable=true]', + snapshotUrls: 'https://i.gkd.li/import/13346187', + }, + ], + }, + ], +});