mirror of
https://github.com/AIsouler/GKD_subscription.git
synced 2025-12-22 01:35:32 +08:00
36 lines
983 B
TypeScript
36 lines
983 B
TypeScript
import { defineAppConfig } from '../types';
|
|
|
|
export default defineAppConfig({
|
|
id: 'com.maidu.gkld',
|
|
name: '公考雷达',
|
|
groups: [
|
|
{
|
|
key: 1,
|
|
name: '更新提示',
|
|
matchTime: 10000,
|
|
actionMaximum: 1,
|
|
resetMatch: 'app',
|
|
rules: '[id="com.maidu.gkld:id/tv_update_next"]',
|
|
snapshotUrls: 'https://i.gkd.li/i/12715215',
|
|
},
|
|
{
|
|
key: 2,
|
|
name: '局部广告-首页右侧悬浮广告',
|
|
activityIds: 'com.maidu.gkld.ui.main.MainActivity',
|
|
rules:
|
|
'[id="com.maidu.gkld:id/fl_float"] + [id="com.maidu.gkld:id/close_image_view"]',
|
|
snapshotUrls: 'https://i.gkd.li/i/12715291',
|
|
},
|
|
{
|
|
key: 10,
|
|
name: '通知提示-请求通知权限弹窗',
|
|
matchTime: 10000,
|
|
actionMaximum: 1,
|
|
resetMatch: 'app',
|
|
rules:
|
|
'[id="com.maidu.gkld:id/ll_open_app_notice"] + [id="com.maidu.gkld:id/iv_cancel"]',
|
|
snapshotUrls: 'https://i.gkd.li/i/12715250',
|
|
},
|
|
],
|
|
});
|