From 8c9df178fceaad2e7d97c28b733293d4afaa37c0 Mon Sep 17 00:00:00 2001 From: walklty <47232102+walklty@users.noreply.github.com> Date: Tue, 17 Oct 2023 00:16:27 +0800 Subject: [PATCH] =?UTF-8?q?feat(=E5=A4=A9=E5=A4=A9=E8=B7=B3=E7=BB=B3):=20?= =?UTF-8?q?=E5=BC=80=E5=B1=8F=E5=B9=BF=E5=91=8A,=E4=BC=9A=E5=91=98?= =?UTF-8?q?=E6=8F=90=E7=A4=BA=20(#1139)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * Create com.gkid.crazyrope.ts * feat(天天跳绳): 规则优化 --------- Co-authored-by: 二刺螈 --- src/apps/com.gkid.crazyrope.ts | 34 ++++++++++++++++++++++++++++++++++ 1 file changed, 34 insertions(+) create mode 100644 src/apps/com.gkid.crazyrope.ts diff --git a/src/apps/com.gkid.crazyrope.ts b/src/apps/com.gkid.crazyrope.ts new file mode 100644 index 00000000..e0d67cc8 --- /dev/null +++ b/src/apps/com.gkid.crazyrope.ts @@ -0,0 +1,34 @@ +import { defineAppConfig } from '../types'; + +export default defineAppConfig({ + id: 'com.gkid.crazyrope', + name: '天天跳绳', + groups: [ + { + key: 0, + name: '开屏广告', + matchLauncher: true, + quickFind: true, + activityIds: 'com.gkid.crazyrope.ui.splash.StartPageActivity', + rules: [ + { + matches: '[id="com.byted.pangle.m:id/tt_splash_skip_btn"]', + snapshotUrls: 'https://gkd-kit.gitee.io/import/12916417', + }, + ], + }, + { + key: 1, + name: '会员提示', + desc: '点击不需要', + quickFind: true, + activityIds: 'com.gkid.crazyrope.ui.member.MemberDiscountsActivity', + rules: [ + { + matches: '[id="com.gkid.crazyrope:id/btn_close"][text="暂不需要"]', + snapshotUrls: 'https://gkd-kit.gitee.io/import/12916419', + }, + ], + }, + ], +});