mirror of
https://github.com/AIsouler/GKD_subscription.git
synced 2025-12-22 01:35:32 +08:00
38 lines
1.1 KiB
TypeScript
38 lines
1.1 KiB
TypeScript
import { defineAppConfig } from '../types';
|
|
|
|
export default defineAppConfig({
|
|
id: 'com.zhengnengliang.precepts',
|
|
name: '正气',
|
|
groups: [
|
|
{
|
|
key: 1,
|
|
name: '更新提示',
|
|
matchTime: 10000,
|
|
actionMaximum: 1,
|
|
resetMatch: 'app',
|
|
activityIds: [
|
|
'com.zhengnengliang.precepts.ui.activity.MainActivity',
|
|
'com.zhengnengliang.precepts.ui.dialog.DialogTwoButton',
|
|
],
|
|
rules: '@[text="取消"] +2 [text="升级"]',
|
|
snapshotUrls: [
|
|
'https://i.gkd.li/import/12727650',
|
|
'https://i.gkd.li/import/12715352',
|
|
],
|
|
},
|
|
{
|
|
key: 2,
|
|
name: '全屏广告-弹窗广告',
|
|
activityIds: [
|
|
'com.zhengnengliang.precepts.ui.activity.MainActivity',
|
|
'com.zhengnengliang.precepts.ui.dialog.DialogTwoButton',
|
|
],
|
|
rules: '[text="点此去广告"] + ImageButton[clickable=true]',
|
|
snapshotUrls: [
|
|
'https://i.gkd.li/import/12739767',
|
|
'https://i.gkd.li/import/12727705', // activityId: 'com.zhengnengliang.precepts.ui.dialog.DialogTwoButton'
|
|
],
|
|
},
|
|
],
|
|
});
|