From 2a34877020c6eea09843f03f87b8a89c8e6c901b Mon Sep 17 00:00:00 2001 From: walklty <47232102+walklty@users.noreply.github.com> Date: Thu, 16 Nov 2023 21:27:01 +0800 Subject: [PATCH] =?UTF-8?q?feat(=E6=96=87=E5=BF=83=E4=B8=80=E8=A8=80):=20?= =?UTF-8?q?=E5=8D=87=E7=BA=A7=E6=8F=90=E7=A4=BA=20(#2130)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit close #2129 --- src/apps/com.baidu.newapp.ts | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 src/apps/com.baidu.newapp.ts diff --git a/src/apps/com.baidu.newapp.ts b/src/apps/com.baidu.newapp.ts new file mode 100644 index 00000000..edc936b0 --- /dev/null +++ b/src/apps/com.baidu.newapp.ts @@ -0,0 +1,22 @@ +import { defineAppConfig } from '../types'; + +export default defineAppConfig({ + id: 'com.baidu.newapp', + name: '文心一言', + groups: [ + { + key: 1, + name: '升级提示', + matchTime: 10000, + actionMaximum: 1, + resetMatch: 'app', + quickFind: true, + rules: [ + { + matches: '[text="立即更新"] + [text="暂不升级"]', + snapshotUrls: 'https://i.gkd.li/import/13360280', + }, + ], + }, + ], +});