From a0e476369c3ffd02017407f5b772ffcf8af2fbd1 Mon Sep 17 00:00:00 2001 From: Kun Jinkao <45487685+Snoopy1866@users.noreply.github.com> Date: Sun, 17 Sep 2023 22:14:36 +0800 Subject: [PATCH] =?UTF-8?q?feat(MX=E6=92=AD=E6=94=BE=E5=99=A8):=20?= =?UTF-8?q?=E8=B0=B7=E6=AD=8C=E5=B9=BF=E5=91=8A=20(#117)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/apps/com.mxtech.videoplayer.ad.ts | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 src/apps/com.mxtech.videoplayer.ad.ts diff --git a/src/apps/com.mxtech.videoplayer.ad.ts b/src/apps/com.mxtech.videoplayer.ad.ts new file mode 100644 index 00000000..1c355be1 --- /dev/null +++ b/src/apps/com.mxtech.videoplayer.ad.ts @@ -0,0 +1,20 @@ +import { defineAppConfig } from '../types'; + +export default defineAppConfig({ + id: 'com.mxtech.videoplayer.ad', + name: 'MX 播放器', + groups: [ + { + key: 1, + name: '谷歌广告', + activityIds: 'com.mxtech.videoplayer.ad.ActivityMediaList', + rules: [ + { + matches: + '[desc="Advertisement"] + View >(2) View + Button[clickable=true]', + snapshotUrls: ['https://gkd-kit.gitee.io/import/12642204'], + }, + ], + }, + ], +});