From e9706a2c8ee66cdab5588a04f567b86fdfccc316 Mon Sep 17 00:00:00 2001 From: AIsouler Date: Sat, 14 Jun 2025 21:21:14 +0800 Subject: [PATCH] =?UTF-8?q?feat:=20FlowMark-=E6=9B=B4=E6=96=B0=E6=8F=90?= =?UTF-8?q?=E7=A4=BA=20#982?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/apps/com.fewwind.flowmark.ts | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 src/apps/com.fewwind.flowmark.ts diff --git a/src/apps/com.fewwind.flowmark.ts b/src/apps/com.fewwind.flowmark.ts new file mode 100644 index 00000000..cd5b0cba --- /dev/null +++ b/src/apps/com.fewwind.flowmark.ts @@ -0,0 +1,24 @@ +import { defineGkdApp } from '@gkd-kit/define'; + +export default defineGkdApp({ + id: 'com.fewwind.flowmark', + name: 'FlowMark', + groups: [ + { + key: 1, + name: '更新提示', + rules: [ + { + fastQuery: true, + activityIds: '.MainActivity', + matches: [ + '[text^="发现新版本"][visibleToUser=true]', + '[text="取消"][visibleToUser=true]', + ], + exampleUrls: 'https://e.gkd.li/ab46d163-83f6-4c50-a6f4-e37186928fba', + snapshotUrls: 'https://i.gkd.li/i/20737817', + }, + ], + }, + ], +});