From d36a2c8ec5c6a7c3af3fe163b37a9f9ec5a7c6a0 Mon Sep 17 00:00:00 2001 From: walklty <47232102+walklty@users.noreply.github.com> Date: Tue, 14 Nov 2023 19:42:50 +0800 Subject: [PATCH] =?UTF-8?q?feat(=E9=82=AE=E5=AE=9D):=20=E5=BC=80=E5=B1=8F?= =?UTF-8?q?=E5=B9=BF=E5=91=8A=20(#2066)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit close #2062 --- src/apps/com.youbao.app.ts | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 src/apps/com.youbao.app.ts diff --git a/src/apps/com.youbao.app.ts b/src/apps/com.youbao.app.ts new file mode 100644 index 00000000..904bfeec --- /dev/null +++ b/src/apps/com.youbao.app.ts @@ -0,0 +1,22 @@ +import { defineAppConfig } from '../types'; + +export default defineAppConfig({ + id: 'com.youbao.app', + name: '邮宝', + groups: [ + { + key: 0, + name: '开屏广告', + matchTime: 10000, + actionMaximum: 1, + resetMatch: 'app', + quickFind: true, + rules: [ + { + matches: '[id="com.youbao.app:id/start_skip_count_down"]', + snapshotUrls: 'https://i.gkd.li/import/13331338', // issues/2062 issuer说不用等倒计时结束 + }, + ], + }, + ], +});