From 37ac820f81e003ebbe173f202066a698001acbf4 Mon Sep 17 00:00:00 2001 From: Kun Jinkao <45487685+Snoopy1866@users.noreply.github.com> Date: Fri, 15 Dec 2023 20:31:38 +0800 Subject: [PATCH] =?UTF-8?q?feat(e=E9=AB=98=E9=80=9F):=20=E5=BC=80=E5=B1=8F?= =?UTF-8?q?=E5=B9=BF=E5=91=8A=E3=80=81=E5=8D=A1=E7=89=87=E5=BC=8F=E5=B9=BF?= =?UTF-8?q?=E5=91=8A=20(#3175)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * feat 开屏广告 * feat 卡片式广告 --- src/apps/com.sdhs.easy.high.road.ts | 33 +++++++++++++++++++++++++++++ 1 file changed, 33 insertions(+) create mode 100644 src/apps/com.sdhs.easy.high.road.ts diff --git a/src/apps/com.sdhs.easy.high.road.ts b/src/apps/com.sdhs.easy.high.road.ts new file mode 100644 index 00000000..2fe12cfe --- /dev/null +++ b/src/apps/com.sdhs.easy.high.road.ts @@ -0,0 +1,33 @@ +import { defineAppConfig } from '../types'; + +export default defineAppConfig({ + id: 'com.sdhs.easy.high.road', + name: 'e高速', + groups: [ + { + key: 0, + name: '开屏广告', + matchTime: 10000, + actionMaximum: 1, + resetMatch: 'app', + rules: '[id="com.byted.pangle:id/tt_splash_skip_btn"]', + snapshotUrls: 'https://i.gkd.li/import/13670339', + }, + { + key: 1, + name: '卡片式广告', + rules: [ + { + key: 0, + name: '腾讯广告', + activityIds: 'com.sdhs.easy.main.activity.MainActivity', + matches: [ + '[desc^="logoad"]', + '[desc^="dislike"] > View[clickable=true]', + ], + snapshotUrls: 'https://i.gkd.li/import/13670340', + }, + ], + }, + ], +});