From a1b3c3f460e1c2e409449993a49237174975f590 Mon Sep 17 00:00:00 2001 From: ylxz95 <106958787+ylxz95@users.noreply.github.com> Date: Wed, 11 Oct 2023 00:22:16 +0800 Subject: [PATCH] =?UTF-8?q?feat(=E6=90=9C=E4=B9=A6=E5=A4=A7=E5=B8=88):=20?= =?UTF-8?q?=E5=BC=80=E5=B1=8F=E5=B9=BF=E5=91=8A=20(#886)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * Create com.flyersoft.seekbooks.ts * feat(搜书大师): 开屏广告-规则优化 --------- Co-authored-by: 二刺螈 --- src/apps/com.flyersoft.seekbooks.ts | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 src/apps/com.flyersoft.seekbooks.ts diff --git a/src/apps/com.flyersoft.seekbooks.ts b/src/apps/com.flyersoft.seekbooks.ts new file mode 100644 index 00000000..d4388e0b --- /dev/null +++ b/src/apps/com.flyersoft.seekbooks.ts @@ -0,0 +1,22 @@ +import { defineAppConfig } from '../types'; + +export default defineAppConfig({ + id: 'com.flyersoft.seekbooks', + name: '搜书大师', + groups: [ + { + key: 1, + name: '开屏广告', + matchLauncher: true, + quickFind: true, + activityIds: ['com.flyersoft.seekbooks.ActivityMain'], + rules: [ + { + matches: + '[id="com.flyersoft.seekbooks:id/splash_container1"] >5 [text^="跳过"][text.length<=3]', + snapshotUrls: 'https://gkd-kit.gitee.io/import/12857275', + }, + ], + }, + ], +});