From f9a1318feb9ad473b7439a0938baac58e183492e Mon Sep 17 00:00:00 2001 From: jiuqianyuan <39406781+jiuqianyuan@users.noreply.github.com> Date: Sun, 24 Dec 2023 20:42:47 +0800 Subject: [PATCH] =?UTF-8?q?feat(=E8=BF=BD=E5=89=A7=E8=BE=BE=E4=BA=BA):?= =?UTF-8?q?=E5=B9=BF=E5=91=8A=E5=BC=B9=E7=AA=97=20(#3342)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit close #3337 --- src/apps/com.sjm.luobo.ts | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 src/apps/com.sjm.luobo.ts diff --git a/src/apps/com.sjm.luobo.ts b/src/apps/com.sjm.luobo.ts new file mode 100644 index 00000000..6133d975 --- /dev/null +++ b/src/apps/com.sjm.luobo.ts @@ -0,0 +1,23 @@ +import { defineAppConfig } from '../types'; + +export default defineAppConfig({ + id: 'com.sjm.luobo', + name: '追剧达人', + groups: [ + { + key: 6, + name: '广告弹窗', + matchTime: 10000, + actionMaximum: 1, + resetMatch: 'app', + rules: [ + { + name: '字节广告SDK', + matches: + 'FrameLayout[childCount>1] > FrameLayout[childCount=1] > ImageView[width<90][height<90]', + snapshotUrls: 'https://i.gkd.li/import/13723963', + }, + ], + }, + ], +});