From ac2021975d15bd482f3c4d1a4f3d1dddf736d06c Mon Sep 17 00:00:00 2001 From: AIsouler Date: Sat, 26 Oct 2024 13:33:07 +0800 Subject: [PATCH] =?UTF-8?q?feat(=E4=B8=8A=E6=B1=BD=E5=A4=A7=E4=BC=97):=20?= =?UTF-8?q?=E5=85=A8=E5=B1=8F=E5=B9=BF=E5=91=8A-=E5=BC=B9=E7=AA=97?= =?UTF-8?q?=E5=B9=BF=E5=91=8A=20(#428)=E3=80=81=E5=B1=80=E9=83=A8=E5=B9=BF?= =?UTF-8?q?=E5=91=8A-=E6=82=AC=E6=B5=AE=E5=B9=BF=E5=91=8A=20(#429)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/apps/com.svw.sc.mos.ts | 42 ++++++++++++++++++++++++++++++++++++++ 1 file changed, 42 insertions(+) create mode 100644 src/apps/com.svw.sc.mos.ts diff --git a/src/apps/com.svw.sc.mos.ts b/src/apps/com.svw.sc.mos.ts new file mode 100644 index 00000000..5a4612fb --- /dev/null +++ b/src/apps/com.svw.sc.mos.ts @@ -0,0 +1,42 @@ +import { defineGkdApp } from '@gkd-kit/define'; + +export default defineGkdApp({ + id: 'com.svw.sc.mos', + name: '上汽大众', + groups: [ + { + key: 1, + name: '全屏广告-弹窗广告', + desc: '点击关闭', + rules: [ + { + fastQuery: true, + matchTime: 10000, + actionMaximum: 1, + resetMatch: 'app', + activityIds: '.main.ui.home.ui.AppStartDialogActivity', + matches: '[vid="iv_appstart_close"][visibleToUser=true]', + exampleUrls: 'https://e.gkd.li/0acf720d-1752-449f-bbe6-357896f1bb2e', + snapshotUrls: 'https://i.gkd.li/i/17528776', + }, + ], + }, + { + key: 2, + name: '局部广告-悬浮广告', + desc: '点击关闭', + rules: [ + { + fastQuery: true, + matchTime: 10000, + actionMaximum: 1, + resetMatch: 'app', + activityIds: '.main.ui.MainActivity', + matches: '[vid="clyt_floating_close"][visibleToUser=true]', + exampleUrls: 'https://e.gkd.li/fbbc311e-cfe1-468a-88c1-20633622a34e', + snapshotUrls: 'https://i.gkd.li/i/17528781', + }, + ], + }, + ], +});