From 9f0c2dfc425a607aead971cf09be221e67cdf0b5 Mon Sep 17 00:00:00 2001 From: xiaowonet <33050133+xiaowonet@users.noreply.github.com> Date: Wed, 1 Nov 2023 00:30:40 +0800 Subject: [PATCH] =?UTF-8?q?feat(=E4=BA=AC=E4=B8=9C=E5=88=B0=E5=AE=B6):=20?= =?UTF-8?q?=E9=A6=96=E9=A1=B5=E5=B9=BF=E5=91=8A=E5=BC=B9=E7=AA=97=E5=8F=8A?= =?UTF-8?q?=E6=9B=B4=E6=96=B0=E5=BC=B9=E7=AA=97=20(#1658)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/apps/com.jingdong.pdj.ts | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) create mode 100644 src/apps/com.jingdong.pdj.ts diff --git a/src/apps/com.jingdong.pdj.ts b/src/apps/com.jingdong.pdj.ts new file mode 100644 index 00000000..3894b0b3 --- /dev/null +++ b/src/apps/com.jingdong.pdj.ts @@ -0,0 +1,27 @@ +import { defineAppConfig } from '../types'; + +export default defineAppConfig({ + id: 'com.jingdong.pdj', + name: '京东到家', + groups: [ + { + key: 1, + name: '首页广告弹窗', + matchTime: 10000, + actionMaximum: 1, + activityIds: 'pdj.main.MainActivity', + rules: 'WebView[text="京东到家"] >7 TextView[text=""]', + snapshotUrls: 'https://gkd-kit.gitee.io/import/13217796', + }, + { + key: 2, + name: '更新弹窗', + quickFind: true, + matchTime: 10000, + actionMaximum: 1, + activityIds: 'com.jingdong.pdj.plunginupdate.update.UpdateDialogActivity', + rules: 'Button[text="暂不安装"]', + snapshotUrls: 'https://gkd-kit.gitee.io/import/13217634', + }, + ], +});