From 6728238d78f83fbcaa3a85848c98babfd0196d04 Mon Sep 17 00:00:00 2001 From: AIsouler Date: Tue, 16 Apr 2024 14:16:16 +0800 Subject: [PATCH] =?UTF-8?q?feat(=E9=9F=B3=E4=B9=90):=20=E6=9B=B4=E6=96=B0?= =?UTF-8?q?=E6=8F=90=E7=A4=BA?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/apps/com.heytap.music.ts | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 src/apps/com.heytap.music.ts diff --git a/src/apps/com.heytap.music.ts b/src/apps/com.heytap.music.ts new file mode 100644 index 00000000..603acb6b --- /dev/null +++ b/src/apps/com.heytap.music.ts @@ -0,0 +1,22 @@ +import { defineAppConfig } from '../types'; + +export default defineAppConfig({ + id: 'com.heytap.music', + name: '音乐', + groups: [ + { + key: 1, + name: '更新提示', + quickFind: true, + matchTime: 10000, + actionMaximum: 1, + resetMatch: 'app', + rules: [ + { + matches: '@ImageView[clickable=true] + [text="检测到新版本"]', + snapshotUrls: 'https://i.gkd.li/i/14987173', + }, + ], + }, + ], +});