From 79fec3b30b96e7ad218146e5c898613a6fe20288 Mon Sep 17 00:00:00 2001 From: aisouler Date: Sat, 10 Feb 2024 17:17:10 +0800 Subject: [PATCH] =?UTF-8?q?feat(=E9=A3=8E=E7=AD=9D=E5=BD=B1=E8=AF=84):=20?= =?UTF-8?q?=E5=BC=80=E5=B1=8F=E5=B9=BF=E5=91=8A=E3=80=81=E5=85=A8=E5=B1=8F?= =?UTF-8?q?=E5=B9=BF=E5=91=8A?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/apps/com.fzfengzheng.fzboyp.ts | 40 ++++++++++++++++++++++++++++++ 1 file changed, 40 insertions(+) create mode 100644 src/apps/com.fzfengzheng.fzboyp.ts diff --git a/src/apps/com.fzfengzheng.fzboyp.ts b/src/apps/com.fzfengzheng.fzboyp.ts new file mode 100644 index 00000000..6a2cbe39 --- /dev/null +++ b/src/apps/com.fzfengzheng.fzboyp.ts @@ -0,0 +1,40 @@ +import { defineAppConfig } from '../types'; + +export default defineAppConfig({ + id: 'com.fzfengzheng.fzboyp', + name: '风筝影评', + groups: [ + { + key: 0, + name: '开屏广告', + matchTime: 10000, + actionMaximum: 1, + resetMatch: 'app', + rules: [ + { + matches: + 'FrameLayout > FrameLayout[childCount>2] > @View[clickable=true] + TextView', + exampleUrls: + 'https://m.gkd.li/57941037/15464fe7-8f80-468d-8972-011cab0ec377', + snapshotUrls: 'https://i.gkd.li/import/14228338', + }, + ], + }, + { + key: 1, + name: '全屏广告-广告弹窗', + desc: '点击关闭', + rules: [ + { + activityIds: + 'com.bytedance.sdk.openadsdk.stub.activity.Stub_Standard_Portrait_Activity', + matches: + 'View[childCount=6] >2 View[childCount=8] > View[childCount=4] > [text="反馈"] + View[index=3]', + exampleUrls: + 'https://m.gkd.li/57941037/3cb59a01-f1ab-4244-b455-3824a5724811', + snapshotUrls: 'https://i.gkd.li/import/14228332', + }, + ], + }, + ], +});