mirror of
https://github.com/AIsouler/GKD_subscription.git
synced 2025-12-20 16:54:43 +08:00
28 lines
734 B
TypeScript
28 lines
734 B
TypeScript
import { defineAppConfig } from '../types';
|
|
|
|
export default defineAppConfig({
|
|
id: 'com.google.android.documentsui',
|
|
name: 'Android 系统文件选择器',
|
|
groups: [
|
|
{
|
|
key: 10,
|
|
name: '功能类-授权第三方应用访问文件夹',
|
|
desc: '自动点击"使用此文件夹"->"允许"',
|
|
activityIds: 'com.android.documentsui.picker.PickActivity',
|
|
rules: [
|
|
{
|
|
key: 0,
|
|
matches: '[text="使用此文件夹"]',
|
|
snapshotUrls: 'https://i.gkd.li/i/12799610',
|
|
},
|
|
{
|
|
preKeys: 0,
|
|
key: 1,
|
|
matches: '[text="取消"] + [text="允许"]',
|
|
snapshotUrls: 'https://i.gkd.li/i/12799603',
|
|
},
|
|
],
|
|
},
|
|
],
|
|
});
|