From 17614bf81ab2d9014fe89e8e12c8a6a4c735383e Mon Sep 17 00:00:00 2001 From: xiaowonet <33050133+xiaowonet@users.noreply.github.com> Date: Tue, 31 Oct 2023 23:34:13 +0800 Subject: [PATCH] =?UTF-8?q?feat(=E4=BC=98=E8=A1=A3=E5=BA=93=20):=20?= =?UTF-8?q?=E5=BC=80=E5=B1=8F=E5=B9=BF=E5=91=8A;=20=E5=BC=B9=E7=AA=97?= =?UTF-8?q?=E5=B9=BF=E5=91=8A=20(#1635)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * feat(优衣库 ): 开屏广告及弹窗广告 * 修订语法 * feat(优衣库): 开屏广告 --------- Co-authored-by: 二刺螈 --- src/apps/com.yek.android.uniqlo.ts | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 src/apps/com.yek.android.uniqlo.ts diff --git a/src/apps/com.yek.android.uniqlo.ts b/src/apps/com.yek.android.uniqlo.ts new file mode 100644 index 00000000..55bfc992 --- /dev/null +++ b/src/apps/com.yek.android.uniqlo.ts @@ -0,0 +1,26 @@ +import { defineAppConfig } from '../types'; + +export default defineAppConfig({ + id: 'com.yek.android.uniqlo', + name: '优衣库', + groups: [ + { + key: 0, + name: '开屏广告', + quickFind: true, + matchTime: 10000, + actionMaximum: 1, + resetMatch: 'app', + rules: 'TextView[text*="跳过"][text.length<=10]', + snapshotUrls: 'https://gkd-kit.gitee.io/import/13212257', + }, + { + key: 1, + name: '弹窗广告', + quickFind: true, + activityIds: 'com.yek.android.uniqlo.uiux.Home.activity.HomeActivity', + rules: 'ImageView[id="com.yek.android.uniqlo:id/pop_close"]', + snapshotUrls: 'https://gkd-kit.gitee.io/import/13212320', + }, + ], +});