From edd956576683d2d50e7650d335ac32f50d5293e6 Mon Sep 17 00:00:00 2001 From: Kun Jinkao <45487685+Snoopy1866@users.noreply.github.com> Date: Tue, 10 Oct 2023 00:34:40 +0800 Subject: [PATCH] =?UTF-8?q?feat(=E8=85=BE=E8=AE=AF=E6=89=8B=E6=B8=B8?= =?UTF-8?q?=E5=8A=A0=E9=80=9F=E5=99=A8):=20=E5=BC=80=E5=B1=8F=E5=B9=BF?= =?UTF-8?q?=E5=91=8A,=E6=82=AC=E6=B5=AE=E5=B9=BF=E5=91=8A,=E4=BF=A1?= =?UTF-8?q?=E6=81=AF=E6=B5=81=E5=86=85=E5=B5=8C=E5=B9=BF=E5=91=8A=20(#834)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * feat【开屏广告】 * feat【悬浮广告】 * feat【信息流内嵌广告】 --- src/apps/com.tencent.cmocmna.ts | 37 +++++++++++++++++++++++++++++++++ 1 file changed, 37 insertions(+) create mode 100644 src/apps/com.tencent.cmocmna.ts diff --git a/src/apps/com.tencent.cmocmna.ts b/src/apps/com.tencent.cmocmna.ts new file mode 100644 index 00000000..9318012a --- /dev/null +++ b/src/apps/com.tencent.cmocmna.ts @@ -0,0 +1,37 @@ +import { defineAppConfig } from '../types'; + +export default defineAppConfig({ + id: 'com.tencent.cmocmna', + name: '腾讯手游加速器', + groups: [ + { + key: 0, + name: '开屏广告', + activityIds: 'com.tencent.mocmna.activity.MainActivity', + matchLauncher: true, + quickFind: true, + rules: '[text$="跳过"]', + snapshotUrls: 'https://gkd-kit.gitee.io/import/12847303', + }, + { + key: 1, + name: '悬浮广告', + activityIds: 'com.tencent.mocmna.activity.MainActivity', + rules: 'ViewGroup[childCount=2] > @ImageView[id!=null] + ImageView', + snapshotUrls: [ + 'https://gkd-kit.gitee.io/import/12847323', + 'https://gkd-kit.gitee.io/import/12847336', + ], + }, + { + key: 2, + name: '信息流内嵌广告', + activityIds: 'com.tencent.mocmna.activity.MainActivity', + rules: 'ImageView - ViewGroup > ImageView + ImageView + ImageView', + snapshotUrls: [ + 'https://gkd-kit.gitee.io/import/12847340', + 'https://gkd-kit.gitee.io/import/12847364', + ], + }, + ], +});