mirror of
https://github.com/AIsouler/GKD_subscription.git
synced 2025-12-21 01:04:53 +08:00
27 lines
585 B
TypeScript
27 lines
585 B
TypeScript
import { defineAppConfig } from '../types';
|
|
|
|
export default defineAppConfig({
|
|
id: 'com.max.xiaoheihe',
|
|
name: '小黑盒',
|
|
groups: [
|
|
// { key: 0 }, 开屏广告 占位
|
|
{
|
|
key: 1,
|
|
name: '功能类-签到成功弹窗',
|
|
desc: '点击"确定"',
|
|
actionMaximum: 1,
|
|
resetMatch: 'app',
|
|
quickFind: true,
|
|
rules: [
|
|
{
|
|
matches: [
|
|
'[text="签到成功!"]',
|
|
'[id="com.max.xiaoheihe:id/tv_confirm"]',
|
|
],
|
|
snapshotUrls: 'https://i.gkd.li/i/13421535',
|
|
},
|
|
],
|
|
},
|
|
],
|
|
});
|