From 424384eef349edcfb27b034b67a859d6b86b5b04 Mon Sep 17 00:00:00 2001 From: AIsouler Date: Mon, 4 Mar 2024 13:41:21 +0800 Subject: [PATCH] =?UTF-8?q?feat(=E5=BA=94=E7=94=A8=E5=95=86=E5=BA=97):=20?= =?UTF-8?q?=E5=8A=9F=E8=83=BD=E7=B1=BB-[=E6=82=A8=E6=98=AF=E5=90=A6?= =?UTF-8?q?=E5=B9=B4=E6=BB=A1=2018=20=E5=B2=81=EF=BC=9F]=E5=BC=B9=E7=AA=97?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/apps/com.sec.android.app.samsungapps.ts | 24 +++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 src/apps/com.sec.android.app.samsungapps.ts diff --git a/src/apps/com.sec.android.app.samsungapps.ts b/src/apps/com.sec.android.app.samsungapps.ts new file mode 100644 index 00000000..68c154bf --- /dev/null +++ b/src/apps/com.sec.android.app.samsungapps.ts @@ -0,0 +1,24 @@ +import { defineAppConfig } from '../types'; + +export default defineAppConfig({ + id: 'com.sec.android.app.samsungapps', + name: '应用商店', + groups: [ + { + key: 1, + name: '功能类-[您是否年满 18 岁?]弹窗', + desc: '点击[是]', + rules: [ + { + quickFind: true, + activityIds: 'com.sec.android.app.samsungapps.SearchResultActivity', + matches: + '[text="您是否年满 18 岁?"] +4 @[clickable=true] > [text="是"]', + exampleUrls: + 'https://m.gkd.li/57941037/cee78493-fbe1-46a0-8dcf-a8b1f1f61f19', + snapshotUrls: 'https://i.gkd.li/i/14473690', + }, + ], + }, + ], +});