From 0d33c6caeaad5f7416bb42cc7b758d4ed2ae36e2 Mon Sep 17 00:00:00 2001 From: Scalpel Date: Fri, 10 Jan 2025 19:57:24 +0800 Subject: [PATCH] =?UTF-8?q?feat(=E8=87=AA=E5=A6=82):=20=E5=85=A8=E5=B1=8F?= =?UTF-8?q?=E5=BC=B9=E7=AA=97=E5=B9=BF=E5=91=8A=EF=BC=9B=E6=8E=A8=E8=8D=90?= =?UTF-8?q?=E5=A5=BD=E5=8F=8B=E5=BC=B9=E7=AA=97=20(#700)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-authored-by: AIsouler --- src/apps/com.ziroom.ziroomcustomer.ts | 41 +++++++++++++++++++++++++++ 1 file changed, 41 insertions(+) create mode 100644 src/apps/com.ziroom.ziroomcustomer.ts diff --git a/src/apps/com.ziroom.ziroomcustomer.ts b/src/apps/com.ziroom.ziroomcustomer.ts new file mode 100644 index 00000000..00e6edfd --- /dev/null +++ b/src/apps/com.ziroom.ziroomcustomer.ts @@ -0,0 +1,41 @@ +import { defineGkdApp } from '@gkd-kit/define'; + +export default defineGkdApp({ + id: 'com.ziroom.ziroomcustomer', + name: '自如', + groups: [ + { + key: 1, + name: '全屏广告-弹窗广告', + desc: '点击关闭', + matchTime: 10000, + actionMaximum: 1, + resetMatch: 'app', + rules: [ + { + fastQuery: true, + activityIds: '.MainActivity', + matches: '[vid="tv_ok"][visibleToUser=true]', + exampleUrls: 'https://e.gkd.li/c6507af4-1bb2-4c39-ab5d-3d04ec391291', + snapshotUrls: 'https://i.gkd.li/i/18373198', + }, + ], + }, + { + key: 2, + name: '全屏广告-推荐好友弹窗', + desc: '点击关闭', + actionMaximum: 1, + resetMatch: 'app', + rules: [ + { + fastQuery: true, + activityIds: '.MainActivity', + matches: '[vid="iv_nps_close"][visibleToUser=true]', + exampleUrls: 'https://e.gkd.li/808f8c61-211f-4592-abe5-21467c133ba6', + snapshotUrls: 'https://i.gkd.li/i/18373218', + }, + ], + }, + ], +});