From 2e51634853f405ca75d012a4821b14bcd72ca32c Mon Sep 17 00:00:00 2001 From: jiuqianyuan <39406781+jiuqianyuan@users.noreply.github.com> Date: Sun, 24 Dec 2023 20:53:35 +0800 Subject: [PATCH] =?UTF-8?q?feat(=E7=99=BE=E5=BA=A6=E6=9E=81=E9=80=9F?= =?UTF-8?q?=E7=89=88):=E5=BC=80=E5=B1=8F=E5=B9=BF=E5=91=8A=20(#3365)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit close #3115 --- src/apps/com.baidu.searchbox.lite.ts | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 src/apps/com.baidu.searchbox.lite.ts diff --git a/src/apps/com.baidu.searchbox.lite.ts b/src/apps/com.baidu.searchbox.lite.ts new file mode 100644 index 00000000..e9fb26da --- /dev/null +++ b/src/apps/com.baidu.searchbox.lite.ts @@ -0,0 +1,22 @@ +import { defineAppConfig } from '../types'; + +export default defineAppConfig({ + id: 'com.baidu.searchbox.lite', + name: '百度极速版', + groups: [ + { + key: 0, + name: '开屏广告', + matchTime: 10000, + actionMaximum: 1, + resetMatch: 'app', + rules: [ + { + quickFind: true, + matches: '[text*="跳过"][text.length<=10]', + snapshotUrls: 'https://i.gkd.li/import/13741508', + }, + ], + }, + ], +});