mirror of
https://github.com/AIsouler/GKD_subscription.git
synced 2025-12-21 09:15:11 +08:00
25 lines
576 B
TypeScript
25 lines
576 B
TypeScript
import { defineGkdApp } from '@gkd-kit/define';
|
|
|
|
export default defineGkdApp({
|
|
id: 'ai.ling.luka.app',
|
|
name: 'Luka阅读养成',
|
|
groups: [
|
|
{
|
|
key: 1,
|
|
name: '权限提示-通知权限',
|
|
desc: '点击[取消]',
|
|
fastQuery: true,
|
|
matchTime: 10000,
|
|
actionMaximum: 1,
|
|
resetMatch: 'app',
|
|
rules: [
|
|
{
|
|
activityIds: '.page.activity.MainActivity',
|
|
matches: ['[text="通知服务未开启"]', '[text="取消"]'],
|
|
snapshotUrls: 'https://i.gkd.li/i/15796616',
|
|
},
|
|
],
|
|
},
|
|
],
|
|
});
|