From d23bac9d821425b67e7d56135882d6689721ef1a Mon Sep 17 00:00:00 2001 From: walklty <47232102+walklty@users.noreply.github.com> Date: Sat, 21 Oct 2023 23:15:38 +0800 Subject: [PATCH] =?UTF-8?q?feat(=E9=A9=AC=E8=9C=82=E7=AA=9D):=20=E5=BC=80?= =?UTF-8?q?=E5=B1=8F=E5=B9=BF=E5=91=8A=20(#1257)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * feat(马蜂窝): 开屏广告 * feat(马蜂窝): 开屏广告-规则优化 --------- Co-authored-by: lisonge close #1237 --- src/apps/com.mfw.roadbook.ts | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 src/apps/com.mfw.roadbook.ts diff --git a/src/apps/com.mfw.roadbook.ts b/src/apps/com.mfw.roadbook.ts new file mode 100644 index 00000000..2bca15e7 --- /dev/null +++ b/src/apps/com.mfw.roadbook.ts @@ -0,0 +1,21 @@ +import { defineAppConfig } from '../types'; + +export default defineAppConfig({ + id: 'com.mfw.roadbook', + name: '马蜂窝', + groups: [ + { + key: 0, + name: '开屏广告', + matchLauncher: true, + quickFind: true, + activityIds: 'com.mfw.roadbook.business.launch.SplashAdActivity', + rules: [ + { + matches: '[id="com.mfw.roadbook:id/skipLayout"]', + snapshotUrls: 'https://gkd-kit.gitee.io/import/13049046', + }, + ], + }, + ], +});