From 0716da875b3e2357a16e315978654c496448b7f5 Mon Sep 17 00:00:00 2001 From: Schweik7 Date: Tue, 10 Oct 2023 00:28:18 +0800 Subject: [PATCH] =?UTF-8?q?feat(=E9=80=9A=E7=9F=A5=E6=92=AD=E6=8A=A5?= =?UTF-8?q?=E5=8A=A9=E6=89=8B):=E5=BC=80=E5=B1=8F=E5=B9=BF=E5=91=8A=20(#79?= =?UTF-8?q?6)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * 添加“通知播报助手”的开屏广告跳过 * feat(通知播报助手): 开屏广告-改正格式 --------- Co-authored-by: 二刺螈 --- src/apps/com.voice.broadcastassistant.ts | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 src/apps/com.voice.broadcastassistant.ts diff --git a/src/apps/com.voice.broadcastassistant.ts b/src/apps/com.voice.broadcastassistant.ts new file mode 100644 index 00000000..0aeb4bfe --- /dev/null +++ b/src/apps/com.voice.broadcastassistant.ts @@ -0,0 +1,19 @@ +import { defineAppConfig } from '../types'; + +export default defineAppConfig({ + id: 'com.voice.broadcastassistant', + name: '通知播报助手', + groups: [ + { + key: 0, + name: '开屏广告', + activityIds: ['com.voice.broadcastassistant.ui.activity.SplashActivity'], + rules: [ + { + matches: '[id="com.byted.pangle:id/tt_splash_skip_btn"]', + snapshotUrls: 'https://gkd-kit.gitee.io/import/12843573', + }, + ], + }, + ], +});