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', // 已思考 折叠 + ], + }, + ], + }, + ], +});