From ca3b46731d6f894e2ec9edc474f9b2a04731adbf Mon Sep 17 00:00:00 2001 From: Kun Jinkao <45487685+Snoopy1866@users.noreply.github.com> Date: Sun, 5 Nov 2023 22:51:57 +0800 Subject: [PATCH] =?UTF-8?q?feat(=E7=BA=B7=E7=8E=A9=E5=B2=9B):=20=E5=BC=80?= =?UTF-8?q?=E5=B1=8F=E5=B9=BF=E5=91=8A=E3=80=81=E5=B9=BF=E5=91=8A=E5=BC=B9?= =?UTF-8?q?=E7=AA=97=20(#1849)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * feat 开屏广告 * feat 广告弹窗 --- src/apps/cn.com.livelab.ts | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 src/apps/cn.com.livelab.ts diff --git a/src/apps/cn.com.livelab.ts b/src/apps/cn.com.livelab.ts new file mode 100644 index 00000000..e3d965f7 --- /dev/null +++ b/src/apps/cn.com.livelab.ts @@ -0,0 +1,24 @@ +import { defineAppConfig } from '../types'; + +export default defineAppConfig({ + id: 'cn.com.livelab', + name: '纷玩岛', + groups: [ + { + key: 0, + name: '开屏广告', + matchTime: 10000, + actionMaximum: 1, + resetMatch: 'app', + rules: '[desc^="跳过"][desc.length<=10]', + snapshotUrls: 'https://i.gkd.li/import/13258874', + }, + { + key: 1, + name: '广告弹窗', + activityIds: 'cn.com.livelab.MainActivity', + rules: 'View >n View[childCount=2] > ImageView + Button', + snapshotUrls: 'https://i.gkd.li/import/13258873', + }, + ], +});