From 07adeea078517bd2aed9a82c947eff4be55fbd48 Mon Sep 17 00:00:00 2001 From: AIsouler Date: Thu, 7 Mar 2024 14:27:21 +0800 Subject: [PATCH] =?UTF-8?q?feat(cTrader):=20=E5=8A=9F=E8=83=BD=E7=B1=BB-?= =?UTF-8?q?=E8=AF=A2=E9=97=AE=E6=98=AF=E5=90=A6=E6=98=AF=E7=BE=8E=E5=9B=BD?= =?UTF-8?q?=E5=B1=85=E6=B0=91=E5=BC=B9=E7=AA=97?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/apps/com.spotware.ct.ts | 34 ++++++++++++++++++++++++++++++++++ 1 file changed, 34 insertions(+) create mode 100644 src/apps/com.spotware.ct.ts diff --git a/src/apps/com.spotware.ct.ts b/src/apps/com.spotware.ct.ts new file mode 100644 index 00000000..156e0460 --- /dev/null +++ b/src/apps/com.spotware.ct.ts @@ -0,0 +1,34 @@ +import { defineAppConfig } from '../types'; + +export default defineAppConfig({ + id: 'com.spotware.ct', + name: 'cTrader', + groups: [ + { + key: 1, + name: '功能类-询问是否是美国居民弹窗', + desc: '点击[我不是美国居民]-点击[确认]', + quickFind: true, + activityIds: 'mobile.droid.ctrader.views.main.MainActivity', + rules: [ + { + key: 0, + name: '点击[我不是美国居民]', + matches: '[text="我不是美国居民"]', + exampleUrls: + 'https://m.gkd.li/57941037/959b6c00-0d43-46d4-83eb-056326f036a5', + snapshotUrls: 'https://i.gkd.li/i/14495502', + }, + { + key: 1, + preKeys: [0], + name: '点击[确认]', + matches: '[text="确认"]', + exampleUrls: + 'https://m.gkd.li/57941037/8adae91e-019d-44eb-8820-b3d560a2b66d', + snapshotUrls: 'https://i.gkd.li/i/14495496', + }, + ], + }, + ], +});