From f5939d9f1b2b5d8df108c7151f2d98d33bda5be3 Mon Sep 17 00:00:00 2001 From: walklty <47232102+walklty@users.noreply.github.com> Date: Sat, 21 Oct 2023 23:04:31 +0800 Subject: [PATCH] =?UTF-8?q?feat(=E5=8F=AE=E5=BD=93=E5=BF=AB=E8=8D=AF):=20?= =?UTF-8?q?=E5=BC=80=E5=B1=8F=E5=B9=BF=E5=91=8A,=20=E4=BC=98=E6=83=A0?= =?UTF-8?q?=E5=88=B8=E6=8F=90=E7=A4=BA=20(#1250)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * feat(叮当快药): 开屏广告, 优惠卷提示 * feat(叮当快药): 开屏广告, 优惠卷提示 --- src/apps/com.ddsy.songyao.ts | 34 ++++++++++++++++++++++++++++++++++ 1 file changed, 34 insertions(+) create mode 100644 src/apps/com.ddsy.songyao.ts diff --git a/src/apps/com.ddsy.songyao.ts b/src/apps/com.ddsy.songyao.ts new file mode 100644 index 00000000..abb3a35e --- /dev/null +++ b/src/apps/com.ddsy.songyao.ts @@ -0,0 +1,34 @@ +import { defineAppConfig } from '../types'; + +export default defineAppConfig({ + id: 'com.ddsy.songyao', + name: '叮当快药', + groups: [ + { + key: 0, + name: '开屏广告', + matchLauncher: true, + quickFind: true, + activityIds: 'com.ddsy.songyao.activity.SplashActivity', + rules: [ + { + matches: '[id="com.ddsy.songyao:id/time"][text*="跳过"]', + snapshotUrls: 'https://gkd-kit.gitee.io/import/13048719', + }, + ], + }, + { + key: 1, + name: '优惠卷提示', + quickFind: true, + activityIds: 'com.ddsy.songyao.activity.SplashActivity', + rules: [ + { + matches: + '[id="com.ddsy.songyao:id/iv_coupon_bottom"] + [id="com.ddsy.songyao:id/iv_close"]', + snapshotUrls: 'https://gkd-kit.gitee.io/import/13048720', + }, + ], + }, + ], +});