From 08ae9936ef9033e02596f1226566929ed186fcab Mon Sep 17 00:00:00 2001 From: ZYX <74281356+zhyx490991014@users.noreply.github.com> Date: Tue, 24 Oct 2023 00:47:06 +0800 Subject: [PATCH] =?UTF-8?q?feat(=E5=B0=8F=E9=B9=B0=E7=9C=8B=E7=9C=8B):=20?= =?UTF-8?q?=E5=BC=80=E5=B1=8F=E5=B9=BF=E5=91=8A=20(#1325)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * 添加小鹰看看开屏广告 小鹰看看开屏广告 * feat(小鹰看看): 规则优化 --------- Co-authored-by: 二刺螈 --- src/apps/com.okcam.ookcam.ts | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 src/apps/com.okcam.ookcam.ts diff --git a/src/apps/com.okcam.ookcam.ts b/src/apps/com.okcam.ookcam.ts new file mode 100644 index 00000000..68c65f8a --- /dev/null +++ b/src/apps/com.okcam.ookcam.ts @@ -0,0 +1,24 @@ +import { defineAppConfig } from '../types'; + +export default defineAppConfig({ + id: 'com.okcam.ookcam', + name: '小鹰看看', + groups: [ + { + key: 0, + name: '开屏广告', + matchLauncher: true, + quickFind: true, + activityIds: 'com.okcam.ookcam.SplashActivity', + rules: [ + { + matches: '[text^="跳过"][text.length<=3]', + snapshotUrls: [ + 'https://gkd-kit.gitee.io/import/13066267', + 'https://gkd-kit.gitee.io/import/13066200', + ], + }, + ], + }, + ], +});