From 61f8fa7001c2da98bb071d34f60810e94c2b2238 Mon Sep 17 00:00:00 2001 From: AIsouler <57941037+AIsouler@users.noreply.github.com> Date: Sun, 14 Jan 2024 21:34:05 +0800 Subject: [PATCH] =?UTF-8?q?feat(=E9=9A=8F=E6=89=8B=E8=AE=B0):=E5=BC=80?= =?UTF-8?q?=E5=B1=8F=E5=B9=BF=E5=91=8A=20(#3785)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit close #3781 --- src/apps/com.mymoney.ts | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 src/apps/com.mymoney.ts diff --git a/src/apps/com.mymoney.ts b/src/apps/com.mymoney.ts new file mode 100644 index 00000000..8d9fb0c3 --- /dev/null +++ b/src/apps/com.mymoney.ts @@ -0,0 +1,24 @@ +import { defineAppConfig } from '../types'; + +export default defineAppConfig({ + id: 'com.mymoney', + name: '随手记', + groups: [ + { + key: 0, + name: '开屏广告', + quickFind: true, + matchTime: 10000, + actionMaximum: 1, + resetMatch: 'app', + desc: '点击跳过', + rules: [ + { + matches: + '@View[clickable=true] <3 * <2 * < FrameLayout[id="com.mymoney:id/external_ad_content"]', + snapshotUrls: 'https://i.gkd.li/import/13855760', + }, + ], + }, + ], +});