From 7eb3d3d4aae5ca18fc96aabb9c733981ae26b8da Mon Sep 17 00:00:00 2001 From: jiuqianyuan <39406781+jiuqianyuan@users.noreply.github.com> Date: Sun, 24 Dec 2023 20:31:09 +0800 Subject: [PATCH] =?UTF-8?q?feat(=E5=A4=9C=E9=97=B4=E6=A8=A1=E5=BC=8F):?= =?UTF-8?q?=E5=85=A8=E5=B1=8F=E5=B9=BF=E5=91=8A=20(#3304)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit close #3282 --- src/apps/com.chenai.eyes.ts | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 src/apps/com.chenai.eyes.ts diff --git a/src/apps/com.chenai.eyes.ts b/src/apps/com.chenai.eyes.ts new file mode 100644 index 00000000..40e87f9c --- /dev/null +++ b/src/apps/com.chenai.eyes.ts @@ -0,0 +1,23 @@ +import { defineAppConfig } from '../types'; + +export default defineAppConfig({ + id: 'com.chenai.eyes', + name: '夜间模式', + groups: [ + { + key: 6, + name: '全屏广告', + matchTime: 10000, + actionMaximum: 1, + resetMatch: 'app', + rules: [ + { + name: '腾讯广告SDK', + quickFind: true, + matches: '[text*="跳过"][text.length<=10]', + snapshotUrls: 'https://i.gkd.li/import/13698395', + }, + ], + }, + ], +});