From 5739abb1f55cea7fa2cc5688716b5e3f5993295c Mon Sep 17 00:00:00 2001 From: AIsouler Date: Thu, 26 Jun 2025 14:42:03 +0800 Subject: [PATCH] =?UTF-8?q?feat:=20=E5=B0=8F=E7=89=9B=E7=94=B5=E5=8A=A8-?= =?UTF-8?q?=E6=9B=B4=E6=96=B0=E6=8F=90=E7=A4=BA-=E5=9B=BA=E4=BB=B6?= =?UTF-8?q?=E6=9B=B4=E6=96=B0=E5=BC=B9=E7=AA=97=20#1014?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/apps/com.niu.cloud.ts | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100644 src/apps/com.niu.cloud.ts diff --git a/src/apps/com.niu.cloud.ts b/src/apps/com.niu.cloud.ts new file mode 100644 index 00000000..4a26cbc1 --- /dev/null +++ b/src/apps/com.niu.cloud.ts @@ -0,0 +1,28 @@ +import { defineGkdApp } from '@gkd-kit/define'; + +export default defineGkdApp({ + id: 'com.niu.cloud', + name: '小牛电动', + groups: [ + { + key: 1, + name: '更新提示-固件更新弹窗', + desc: '点击[以后再说]', + matchTime: 10000, + actionMaximum: 1, + resetMatch: 'app', + rules: [ + { + fastQuery: true, + activityIds: '.main.MainActivityNew', + matches: [ + '[text="发现新固件"][visibleToUser=true]', + '[text="以后再说"][visibleToUser=true]', + ], + exampleUrls: 'https://e.gkd.li/b486cc0b-3ac2-4be3-a38d-c16c952f4fce', + snapshotUrls: 'https://i.gkd.li/i/20919078', + }, + ], + }, + ], +});