From 9fe720b78ec70986b290e43987a965e69dc7f342 Mon Sep 17 00:00:00 2001 From: Lanyuanxiaoyao Date: Fri, 8 Dec 2023 21:50:31 +0800 Subject: [PATCH] =?UTF-8?q?feat(Fake=20Location):=20=E5=BC=80=E5=B1=8F?= =?UTF-8?q?=E5=B9=BF=E5=91=8A=20(#2937)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * feat(Fake Location): 开屏广告 * feat(Fake Location): 开屏广告 --------- Co-authored-by: lisonge --- src/apps/com.lerist.fakelocation.ts | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 src/apps/com.lerist.fakelocation.ts diff --git a/src/apps/com.lerist.fakelocation.ts b/src/apps/com.lerist.fakelocation.ts new file mode 100644 index 00000000..ef749f8f --- /dev/null +++ b/src/apps/com.lerist.fakelocation.ts @@ -0,0 +1,22 @@ +import { defineAppConfig } from '../types'; + +export default defineAppConfig({ + id: 'com.lerist.fakelocation', + name: 'Fake Location', + groups: [ + { + key: 0, + name: '开屏广告', + quickFind: true, + actionMaximum: 1, + resetMatch: 'app', + matchTime: 10000, + rules: [ + { + matches: '[text^="跳过"][text.length<=10]', + snapshotUrls: 'https://i.gkd.li/import/13608967', + }, + ], + }, + ], +});