From 9235af796096b366f30a75b0e8774633cbf87119 Mon Sep 17 00:00:00 2001 From: AIsouler Date: Thu, 27 Jun 2024 19:24:01 +0800 Subject: [PATCH] =?UTF-8?q?feat(=E5=BA=94=E7=94=A8=E5=AE=9D):=20=E5=8A=9F?= =?UTF-8?q?=E8=83=BD=E7=B1=BB-=E5=85=B3=E9=97=AD=E7=99=BB=E5=BD=95?= =?UTF-8?q?=E5=BC=B9=E7=AA=97?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/apps/com.tencent.android.qqdownloader.ts | 25 ++++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 src/apps/com.tencent.android.qqdownloader.ts diff --git a/src/apps/com.tencent.android.qqdownloader.ts b/src/apps/com.tencent.android.qqdownloader.ts new file mode 100644 index 00000000..c8c70921 --- /dev/null +++ b/src/apps/com.tencent.android.qqdownloader.ts @@ -0,0 +1,25 @@ +import { defineGkdApp } from '@gkd-kit/define'; + +export default defineGkdApp({ + id: 'com.tencent.android.qqdownloader', + name: '应用宝', + groups: [ + { + key: 1, + name: '功能类-关闭登录弹窗', + quickFind: true, + matchTime: 10000, + actionMaximum: 1, + resetMatch: 'app', + rules: [ + { + activityIds: 'com.tencent.assistantv2.activity.MainActivity', + matches: '@Button[clickable=true] - [text="欢迎登录应用宝"]', + exampleUrls: + 'https://m.gkd.li/57941037/29c109c2-7993-4b39-ba80-6ae6451ab533', + snapshotUrls: 'https://i.gkd.li/i/16012576', + }, + ], + }, + ], +});