From c3ed2fe8580bbb7328e95c39c44b1e9cf0b2b49e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E5=B7=B4=E6=8B=89=E5=B7=B4=E6=8B=89=E5=98=BF?= <83610194+superHao2000@users.noreply.github.com> Date: Thu, 30 Nov 2023 21:34:45 +0800 Subject: [PATCH] =?UTF-8?q?feat(=E5=85=A8=E7=90=83=E8=B4=AD=E9=AA=91?= =?UTF-8?q?=E5=A3=AB=E7=89=B9=E6=9D=83):=20=E5=BC=80=E5=B1=8F=E5=B9=BF?= =?UTF-8?q?=E5=91=8A=E5=92=8C=E4=B8=BB=E9=A1=B5=E5=BC=B9=E7=AA=97=20(#2661?= =?UTF-8?q?)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * feat: 开屏广告和主页弹窗 * feat(全球购骑士特权): 开屏广告 --------- Co-authored-by: lisonge close #2660 --- src/apps/com.black.unique.ts | 34 ++++++++++++++++++++++++++++++++++ 1 file changed, 34 insertions(+) create mode 100644 src/apps/com.black.unique.ts diff --git a/src/apps/com.black.unique.ts b/src/apps/com.black.unique.ts new file mode 100644 index 00000000..0d13a338 --- /dev/null +++ b/src/apps/com.black.unique.ts @@ -0,0 +1,34 @@ +import { defineAppConfig } from '../types'; + +export default defineAppConfig({ + id: 'com.black.unique', + name: '全球购骑士特权', + groups: [ + { + key: 0, + name: '开屏广告', + quickFind: true, + matchTime: 10000, + actionMaximum: 1, + resetMatch: 'app', + rules: [ + { + matches: '[id="com.byted.pangle.m:id/tt_splash_skip_btn"]', + snapshotUrls: 'https://i.gkd.li/import/13499535', + }, + ], + }, + { + key: 1, + name: '弹窗广告', + quickFind: true, + activityIds: 'com.black.unique.feature.home.HomeActivity', + rules: [ + { + matches: '@ImageView[id="com.black.unique:id/iv_close"]', + snapshotUrls: 'https://i.gkd.li/import/13499502', + }, + ], + }, + ], +});