From 2eaac974eedd639b58f53eb07fe91178e8578bd9 Mon Sep 17 00:00:00 2001 From: adproqwq <101449500+adproqwq@users.noreply.github.com> Date: Sun, 19 Nov 2023 00:04:25 +0800 Subject: [PATCH] =?UTF-8?q?feat(=E6=96=B0=E5=8C=85=E5=90=8DNP=E7=AE=A1?= =?UTF-8?q?=E7=90=86=E5=99=A8):=20=E5=BC=80=E5=B1=8F=E5=B9=BF=E5=91=8A=20(?= =?UTF-8?q?#2243)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * feat(新包名NP管理器): 开屏广告 * Update com.wn.app.np.ts --------- Co-authored-by: 二刺螈 --- src/apps/com.wn.app.np.ts | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 src/apps/com.wn.app.np.ts diff --git a/src/apps/com.wn.app.np.ts b/src/apps/com.wn.app.np.ts new file mode 100644 index 00000000..8d4a2c00 --- /dev/null +++ b/src/apps/com.wn.app.np.ts @@ -0,0 +1,26 @@ +import { defineAppConfig } from '../types'; + +export default defineAppConfig({ + id: 'com.wn.app.np', + name: 'NP管理器', + groups: [ + { + key: 1, + name: '开屏广告', + quickFind: true, + matchTime: 10000, + actionMaximum: 1, + resetMatch: 'app', + rules: [ + { + matches: '@LinearLayout > TextView[text^="跳过"]', + snapshotUrls: [ + 'https://i.gkd.li/import/13400234', + 'https://i.gkd.li/import/13400250', + 'https://i.gkd.li/import/13400257', + ], + }, + ], + }, + ], +});