From 681f12cfe1a194464d30c5d5c1ba6d29217bcac8 Mon Sep 17 00:00:00 2001 From: walklty <47232102+walklty@users.noreply.github.com> Date: Thu, 16 Nov 2023 20:38:32 +0800 Subject: [PATCH] =?UTF-8?q?feat(xlife):=20=E5=BC=80=E5=B1=8F=E5=B9=BF?= =?UTF-8?q?=E5=91=8A=20(#2127)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * Create com.blackbees.xlife.ts * feat(Xlife): 开屏广告 --------- Co-authored-by: lisonge close #2089 --- src/apps/com.blackbees.xlife.ts | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 src/apps/com.blackbees.xlife.ts diff --git a/src/apps/com.blackbees.xlife.ts b/src/apps/com.blackbees.xlife.ts new file mode 100644 index 00000000..dc68424c --- /dev/null +++ b/src/apps/com.blackbees.xlife.ts @@ -0,0 +1,22 @@ +import { defineAppConfig } from '../types'; + +export default defineAppConfig({ + id: 'com.blackbees.xlife', + name: 'Xlife', + groups: [ + { + key: 0, + name: '开屏广告', + matchTime: 10000, + actionMaximum: 1, + resetMatch: 'app', + quickFind: true, + rules: [ + { + matches: '[text="跳过"]', + snapshotUrls: 'https://i.gkd.li/import/13359460', + }, + ], + }, + ], +});