From 3d67e9a018fad538fa16a366d82071b429e0fd9f Mon Sep 17 00:00:00 2001 From: AIsouler Date: Mon, 13 Oct 2025 19:06:47 +0800 Subject: [PATCH] =?UTF-8?q?feat:=20=E7=AB=A0=E9=B1=BC=E8=AE=B0=E8=B4=A6-?= =?UTF-8?q?=E5=85=A8=E5=B1=8F=E5=B9=BF=E5=91=8A?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/apps/com.shengjue.cashbook.ts | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 src/apps/com.shengjue.cashbook.ts diff --git a/src/apps/com.shengjue.cashbook.ts b/src/apps/com.shengjue.cashbook.ts new file mode 100644 index 00000000..91c7792e --- /dev/null +++ b/src/apps/com.shengjue.cashbook.ts @@ -0,0 +1,23 @@ +import { defineGkdApp } from '@gkd-kit/define'; + +export default defineGkdApp({ + id: 'com.shengjue.cashbook', + name: '章鱼记账', + groups: [ + { + key: 1, + name: '全屏广告', + desc: '点击关闭', + rules: [ + { + fastQuery: true, + activityIds: 'com.hjq.demo.ui.activity.SplashActivity', + matches: + 'ImageView[childCount=0] < @ViewGroup[clickable=true][childCount=1][visibleToUser=true] 2 [text="广告"]', + exampleUrls: 'https://e.gkd.li/2828ac84-f5e0-44c0-aab8-a12bff976fca', + snapshotUrls: 'https://i.gkd.li/i/22882021', + }, + ], + }, + ], +});