diff --git a/src/apps/com.vivo.remoteassistant.ts b/src/apps/com.vivo.remoteassistant.ts new file mode 100644 index 00000000..ed790c6d --- /dev/null +++ b/src/apps/com.vivo.remoteassistant.ts @@ -0,0 +1,24 @@ +import { defineGkdApp } from '@gkd-kit/define'; + +export default defineGkdApp({ + id: 'com.vivo.remoteassistant', + name: '远程协助', + groups: [ + { + key: 1, + name: '功能类-自动同意远程协助请求', + desc: '发来远程协助请求,点击同意', + rules: [ + { + fastQuery: true, + activityIds: '.InviteeActivity', + matches: [ + '[text="发来远程协助请求"][visibleToUser=true]', + 'Button[vid="inviteeAgree"][visibleToUser=true]', + ], + snapshotUrls: 'https://i.gkd.li/i/20768251', + }, + ], + }, + ], +});