From 06278c559e33932f2fd10b675c81c0f595eff9bf Mon Sep 17 00:00:00 2001 From: AIsouler Date: Wed, 1 Jan 2025 19:33:01 +0800 Subject: [PATCH] =?UTF-8?q?feat(=E6=B5=A6=E5=A4=A7=E5=96=9C=E5=A5=94):=20?= =?UTF-8?q?=E9=80=9A=E7=9F=A5=E6=8F=90=E7=A4=BA-=E4=BB=A3=E7=90=86?= =?UTF-8?q?=E6=8F=90=E7=A4=BA=E5=BC=B9=E7=AA=97=E3=80=81=E5=85=A8=E5=B1=8F?= =?UTF-8?q?=E5=B9=BF=E5=91=8A-=E9=A6=96=E9=A1=B5=E5=BC=B9=E7=AA=97?= =?UTF-8?q?=E5=B9=BF=E5=91=8A=E3=80=81=E5=B1=80=E9=83=A8=E5=B9=BF=E5=91=8A?= =?UTF-8?q?-=E6=82=AC=E6=B5=AE=E5=B9=BF=E5=91=8A=20(#664)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/apps/com.spdbccc.app.ts | 65 +++++++++++++++++++++++++++++++++++++ 1 file changed, 65 insertions(+) create mode 100644 src/apps/com.spdbccc.app.ts diff --git a/src/apps/com.spdbccc.app.ts b/src/apps/com.spdbccc.app.ts new file mode 100644 index 000000000..032b7b93b --- /dev/null +++ b/src/apps/com.spdbccc.app.ts @@ -0,0 +1,65 @@ +import { defineGkdApp } from '@gkd-kit/define'; + +export default defineGkdApp({ + id: 'com.spdbccc.app', + name: '浦大喜奔', + groups: [ + { + key: 1, + name: '通知提示-代理提示弹窗', + desc: '点击[确定]', + matchTime: 10000, + actionMaximum: 1, + resetMatch: 'app', + rules: [ + { + fastQuery: true, + activityIds: '.sp.splash.activity.SplashActivity', + matches: [ + '[text="提示"][visibleToUser=true]', + '[text="确定"][visibleToUser=true]', + ], + exampleUrls: 'https://e.gkd.li/e582c5d4-bce3-46a2-ad69-7d0ac4e2fb52', + snapshotUrls: 'https://i.gkd.li/i/18275651', + }, + ], + }, + { + key: 2, + name: '全屏广告-首页弹窗广告', + fastQuery: true, + matchTime: 10000, + actionMaximum: 1, + resetMatch: 'app', + activityIds: '.sp.main.MainActivity', + rules: [ + { + key: 1, + matches: + '[vid="ckb_not_show_again"][checked=false][visibleToUser=true]', + exampleUrls: 'https://e.gkd.li/bb770917-9fbb-4910-9c9e-8bf58437bb1e', + snapshotUrls: 'https://i.gkd.li/i/18275682', + }, + { + preKeys: [1], + matches: '[vid="iv_kfc_image_close"][visibleToUser=true]', + exampleUrls: 'https://e.gkd.li/bb770917-9fbb-4910-9c9e-8bf58437bb1e', + snapshotUrls: 'https://i.gkd.li/i/18275682', + }, + ], + }, + { + key: 3, + name: '局部广告-悬浮广告', + rules: [ + { + fastQuery: true, + activityIds: '.sp.main.MainActivity', + matches: '[vid="ll_quolity_float_close"][visibleToUser=true]', + exampleUrls: 'https://e.gkd.li/4cb41225-609a-4b7f-8ff4-ecca03d37c38', + snapshotUrls: 'https://i.gkd.li/i/18275729', + }, + ], + }, + ], +});