From d6d350dd2ec5a4fe8eb99d0aa1159ed1fc435876 Mon Sep 17 00:00:00 2001 From: xiaowonet <33050133+xiaowonet@users.noreply.github.com> Date: Thu, 2 Nov 2023 20:38:09 +0800 Subject: [PATCH] =?UTF-8?q?feat(=E5=B0=8F=E7=8C=BF=E5=8F=A3=E7=AE=97):=20?= =?UTF-8?q?=E5=BC=80=E5=B1=8F=E5=B9=BF=E5=91=8A+=E8=AF=84=E5=88=86?= =?UTF-8?q?=E5=BC=B9=E7=AA=97=20(#1699)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * feat(小猿口算): 开屏广告+评分弹窗 * feat(小猿口算): 开屏广告 --------- Co-authored-by: lisonge --- src/apps/com.fenbi.android.leo.ts | 29 +++++++++++++++++++++++++++++ 1 file changed, 29 insertions(+) create mode 100644 src/apps/com.fenbi.android.leo.ts diff --git a/src/apps/com.fenbi.android.leo.ts b/src/apps/com.fenbi.android.leo.ts new file mode 100644 index 00000000..f5f1cd2c --- /dev/null +++ b/src/apps/com.fenbi.android.leo.ts @@ -0,0 +1,29 @@ +import { defineAppConfig } from '../types'; + +export default defineAppConfig({ + id: 'com.fenbi.android.leo', + name: '小猿口算', + groups: [ + { + key: 0, + name: '开屏广告', + quickFind: true, + matchTime: 10000, + actionMaximum: 1, + resetMatch: 'app', + rules: '[text*="跳过"][text.length<=10]', + snapshotUrls: 'https://gkd-kit.gitee.io/import/13226136', + }, + { + enable: false, + key: 1, + name: '评分弹窗', + quickFind: true, + actionMaximum: 1, + activityIds: + 'com.fenbi.android.leo.imgsearch.sdk.activity.NewCheckCameraActivity', + rules: '@[text="残忍拒绝"] + [text*="好评"][text.length<=10]', + snapshotUrls: 'https://gkd-kit.gitee.io/import/13226140', + }, + ], +});