mirror of
https://github.com/AIsouler/GKD_subscription.git
synced 2025-12-21 01:04:53 +08:00
47 lines
1.3 KiB
TypeScript
47 lines
1.3 KiB
TypeScript
import { defineAppConfig } from '../types';
|
|
|
|
export default defineAppConfig({
|
|
id: 'com.maidu.gkld',
|
|
name: '公考雷达',
|
|
groups: [
|
|
{
|
|
key: 0,
|
|
name: '开屏广告',
|
|
quickFind: true,
|
|
matchTime: 10000,
|
|
actionMaximum: 1,
|
|
resetMatch: 'app',
|
|
rules: [
|
|
{
|
|
matches: '[id="com.maidu.gkld:id/tv_splash_timer"][text="跳过"]',
|
|
snapshotUrls: 'https://i.gkd.li/import/13328332',
|
|
},
|
|
],
|
|
},
|
|
{
|
|
key: 1,
|
|
name: '更新弹窗',
|
|
activityIds: 'com.maidu.gkld.ui.main.MainActivity',
|
|
rules: '[id="com.maidu.gkld:id/tv_update_next"]',
|
|
snapshotUrls: 'https://i.gkd.li/import/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/import/12715291',
|
|
},
|
|
{
|
|
enable: false,
|
|
key: 10,
|
|
name: '请求通知权限弹窗',
|
|
activityIds: 'com.maidu.gkld.ui.main.MainActivity',
|
|
rules:
|
|
'[id="com.maidu.gkld:id/ll_open_app_notice"] + [id="com.maidu.gkld:id/iv_cancel"]',
|
|
snapshotUrls: 'https://i.gkd.li/import/12715250',
|
|
},
|
|
],
|
|
});
|