mirror of
https://github.com/AIsouler/GKD_subscription.git
synced 2025-12-20 16:54:43 +08:00
24 lines
576 B
TypeScript
24 lines
576 B
TypeScript
import { defineGkdApp } from '@gkd-kit/define';
|
||
|
||
export default defineGkdApp({
|
||
id: 'lab.vie.two',
|
||
name: 'LIBVIO',
|
||
groups: [
|
||
{
|
||
key: 1,
|
||
name: '其他-账号注册说明弹窗',
|
||
desc: '每次打开app的弹窗提示,自动点击"我知道了"',
|
||
matchTime: 10000,
|
||
actionMaximum: 1,
|
||
resetMatch: 'app',
|
||
rules: [
|
||
{
|
||
activityIds: '.MainActivity',
|
||
matches: '[desc="账号注册说明"] +2 [desc="我知道了"]',
|
||
snapshotUrls: 'https://i.gkd.li/i/13379070',
|
||
},
|
||
],
|
||
},
|
||
],
|
||
});
|