mirror of
https://github.com/AIsouler/GKD_subscription.git
synced 2025-12-24 02:35:25 +08:00
39 lines
1.2 KiB
TypeScript
39 lines
1.2 KiB
TypeScript
import { defineAppConfig } from '../types';
|
|
|
|
export default defineAppConfig({
|
|
id: 'com.ss.android.lark',
|
|
name: '飞书',
|
|
groups: [
|
|
{
|
|
key: 1,
|
|
name: '功能类-桌面端登录确认',
|
|
quickFind: true,
|
|
activityIds:
|
|
'com.ss.lark.android.passport.biz.feature.sso.suite.SuiteConfirmActivity',
|
|
rules:
|
|
'[text="飞书 桌面端登录确认"] +2 [id="com.ss.android.lark:id/login_button"]',
|
|
snapshotUrls: 'https://i.gkd.li/i/13494960',
|
|
},
|
|
{
|
|
key: 10,
|
|
name: '功能类-自动查看原图',
|
|
desc: '查看图片时自动点击"查看原图"',
|
|
activityIds:
|
|
'com.ss.android.lark.widget.photo.preview.PhotoPagerActivity',
|
|
quickFind: true,
|
|
rules: '[id="com.ss.android.lark:id/look_origin_icon"]',
|
|
snapshotUrls: 'https://i.gkd.li/i/12840528',
|
|
},
|
|
{
|
|
key: 11,
|
|
name: '功能类-自动发送原图',
|
|
desc: '发送图片时自动勾选"原图"',
|
|
activityIds: 'com.ss.android.lark.chatwindow.ChatWindowActivity',
|
|
quickFind: true,
|
|
rules:
|
|
'@View[id$="original_photo"][checked=false] + [id="com.ss.android.lark:id/original_label"][text="原图"]',
|
|
snapshotUrls: 'https://i.gkd.li/i/12840551',
|
|
},
|
|
],
|
|
});
|