From 946bd94bd8dcc53617550666363e4ec339427f4b Mon Sep 17 00:00:00 2001 From: Kun Jinkao <45487685+Snoopy1866@users.noreply.github.com> Date: Sun, 3 Dec 2023 16:42:08 +0800 Subject: [PATCH] =?UTF-8?q?feat(=E9=AD=94=E9=9F=B3MORIN):=20=E5=BC=B9?= =?UTF-8?q?=E7=AA=97=E5=B9=BF=E5=91=8A=E3=80=81=E5=8D=A1=E7=89=87=E5=BC=8F?= =?UTF-8?q?=E5=B9=BF=E5=91=8A=20(#2726)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * feat 弹窗广告 * feat 卡片式广告 --- src/apps/com.feiyu.morin.ts | 36 ++++++++++++++++++++++++++++++++++++ 1 file changed, 36 insertions(+) create mode 100644 src/apps/com.feiyu.morin.ts diff --git a/src/apps/com.feiyu.morin.ts b/src/apps/com.feiyu.morin.ts new file mode 100644 index 00000000..bf355a2d --- /dev/null +++ b/src/apps/com.feiyu.morin.ts @@ -0,0 +1,36 @@ +import { defineAppConfig } from '../types'; + +export default defineAppConfig({ + id: 'com.feiyu.morin', + name: '魔音MORIN', + groups: [ + { + key: 0, + name: '弹窗广告', + rules: [ + { + key: 0, + name: '腾讯广告', + activityIds: 'com.feiyu.morin.view.main.MainActivity', + matches: + 'ImageView - FrameLayout > FrameLayout[childCount=1] > ImageView[childCount=0]', + snapshotUrls: 'https://i.gkd.li/import/13521556', + }, + ], + }, + { + key: 1, + name: '卡片式广告', + rules: [ + { + key: 0, + name: '腾讯广告', + activityIds: 'com.feiyu.morin.view.main.MainActivity', + matches: + 'ImageView + LinearLayout + LinearLayout + FrameLayout > ImageView', + snapshotUrls: 'https://i.gkd.li/import/13521680', + }, + ], + }, + ], +});