mirror of
https://github.com/AIsouler/GKD_subscription.git
synced 2025-12-20 16:54:43 +08:00
29 lines
733 B
TypeScript
29 lines
733 B
TypeScript
import { defineAppConfig } from '../types';
|
|
|
|
export default defineAppConfig({
|
|
id: 'cn.xuexi.android',
|
|
name: '学习强国',
|
|
groups: [
|
|
{
|
|
key: 1,
|
|
name: '更新提示',
|
|
matchTime: 10000,
|
|
actionMaximum: 1,
|
|
resetMatch: 'app',
|
|
rules: '@[text="取消"] + [text="立即升级"]',
|
|
snapshotUrls: 'https://i.gkd.li/i/12715139',
|
|
},
|
|
{
|
|
key: 10,
|
|
name: '通知提示-请求开启通知权限提示信息',
|
|
desc: '自动点击x按钮',
|
|
matchTime: 10000,
|
|
actionMaximum: 1,
|
|
resetMatch: 'app',
|
|
rules:
|
|
'[text^="开启消息通知"] +2 [id="cn.xuexi.android:id/layout_close"]',
|
|
snapshotUrls: 'https://i.gkd.li/i/12715160',
|
|
},
|
|
],
|
|
});
|