From 58d023aaa2ede38962df6e10eab77a6729f47132 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E5=A4=A9=E6=96=B9=E5=A4=9C=E8=B0=AD?= Date: Thu, 11 Dec 2025 23:03:08 +0800 Subject: [PATCH] =?UTF-8?q?feat:=20DeepSeek-=E8=87=AA=E5=8A=A8=E6=8A=98?= =?UTF-8?q?=E5=8F=A0=E6=80=9D=E8=80=83=E8=BF=87=E7=A8=8B=20(#1552)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/apps/com.deepseek.chat.ts | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 src/apps/com.deepseek.chat.ts diff --git a/src/apps/com.deepseek.chat.ts b/src/apps/com.deepseek.chat.ts new file mode 100644 index 00000000..7a35384a --- /dev/null +++ b/src/apps/com.deepseek.chat.ts @@ -0,0 +1,24 @@ +import { defineGkdApp } from '@gkd-kit/define'; + +export default defineGkdApp({ + id: 'com.deepseek.chat', + name: 'DeepSeek', + groups: [ + { + key: 1, + name: '功能类-自动折叠思考过程', + rules: [ + { + activityIds: 'com.deepseek.chat.MainActivity', + matches: + '@[clickable=true] > [text="正在思考" || text^="已思考"] + View[desc="折叠"]', + snapshotUrls: [ + 'https://i.gkd.li/i/23982641', // 正在思考 未折叠 + 'https://i.gkd.li/i/23982613', // 已思考 未折叠 + 'https://i.gkd.li/i/23982615', // 已思考 折叠 + ], + }, + ], + }, + ], +});