From a838f644018228f61387f534a28c2d4302a563e8 Mon Sep 17 00:00:00 2001 From: aoguai <1340219674@qq.com> Date: Thu, 12 Oct 2023 17:56:47 +0800 Subject: [PATCH] =?UTF-8?q?feat(=E6=9B=B2=E5=A5=87=E4=BA=91=E7=9B=98):=20?= =?UTF-8?q?=E5=BC=80=E5=B1=8F=E5=B9=BF=E5=91=8A=E3=80=81=E7=A7=81=E4=BA=BA?= =?UTF-8?q?=E4=BA=91-=E7=9C=8B=E5=9B=BE-=E5=BC=B9=E7=AA=97=E5=B9=BF?= =?UTF-8?q?=E5=91=8A(gkd-kit#866)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/apps/com.quqi.quqioffice.ts | 56 +++++++++++++++++++++++++++++++++ 1 file changed, 56 insertions(+) create mode 100644 src/apps/com.quqi.quqioffice.ts diff --git a/src/apps/com.quqi.quqioffice.ts b/src/apps/com.quqi.quqioffice.ts new file mode 100644 index 000000000..72235eec9 --- /dev/null +++ b/src/apps/com.quqi.quqioffice.ts @@ -0,0 +1,56 @@ +import { defineAppConfig } from '../types'; + +export default defineAppConfig({ + id: 'com.quqi.quqioffice', + name: '曲奇云盘', + groups: [ + { + key: 0, + name: '开屏广告', + activityIds: 'com.quqi.quqioffice.pages.splashAd.SplashAdPage', + rules: [ + { + matches: 'TextView[text="4"||text="5"] - TextView[text$="跳过"]', + snapshotUrls: 'https://gkd-kit.gitee.io/import/12854643', + }, + { + matches: 'View[id="com.byted.pangle:id/tt_splash_skip_btn"]', + snapshotUrls: 'https://gkd-kit.gitee.io/import/12854691', + }, + ], + }, + { + key: 1, + name: '私人云-看图-弹窗广告', + desc: '在线私人云看图片自动弹出自动播放可跳过广告', + activityIds: [ + 'com.qq.e.ads.PortraitADActivity', + 'com.bytedance.sdk.openadsdk.stub.activity.Stub_Standard_Portrait_Activity', + ], + rules: [ + { + matches: + 'LinearLayout > FrameLayout > FrameLayout > ImageView[id=null]', + snapshotUrls: [ + 'https://gkd-kit.gitee.io/import/12854650', + 'https://gkd-kit.gitee.io/import/12854723', + ], + }, + { + matches: 'TextView[text$="s"] + TextView[text$="跳过"]', + snapshotUrls: ['https://gkd-kit.gitee.io/import/12877535'], + }, + { + matches: + 'TextView[text*="应用名称"] < LinearLayout -2n FrameLayout > FrameLayout > ImageView[id=null]', + snapshotUrls: 'https://gkd-kit.gitee.io/import/12854664', + }, + { + matches: + 'ImageView[id="com.byted.pangle:id/tt_reward_full_count_down_after_close"]', + snapshotUrls: 'https://gkd-kit.gitee.io/import/12877540', + }, + ], + }, + ], +});