From c76c5c0ef62b26f0943f575ae8646a0935c86122 Mon Sep 17 00:00:00 2001 From: Kun Jinkao <45487685+Snoopy1866@users.noreply.github.com> Date: Thu, 21 Sep 2023 21:43:12 +0800 Subject: [PATCH] =?UTF-8?q?feat(=E5=80=92=E7=8F=AD=E5=8A=A9=E6=89=8B):=20?= =?UTF-8?q?=E5=BC=80=E5=B1=8F=E5=B9=BF=E5=91=8A=20(#242)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/apps/com.shougang.shiftassistant.ts | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 src/apps/com.shougang.shiftassistant.ts diff --git a/src/apps/com.shougang.shiftassistant.ts b/src/apps/com.shougang.shiftassistant.ts new file mode 100644 index 00000000..15fa108c --- /dev/null +++ b/src/apps/com.shougang.shiftassistant.ts @@ -0,0 +1,24 @@ +import { defineAppConfig } from '../types'; + +export default defineAppConfig({ + id: 'com.shougang.shiftassistant', + name: '倒班助手', + groups: [ + { + key: 0, + name: '开屏广告', + activityIds: ['com.shougang.shiftassistant.ui.activity.SplashActivity'], + rules: [ + { + matches: + '@[text^="跳过"][clickable=true] - FrameLayout >(2) [id="com.byted.pangle:id/tt_splash_ad_logo"]', + snapshotUrls: ['https://gkd-kit.gitee.io/import/12683266'], + }, + { + matches: '@[text^="跳过"] - FrameLayout >(n) [text="广告"]', + snapshotUrls: ['https://gkd-kit.gitee.io/import/12683289'], + }, + ], + }, + ], +});