mirror of
https://github.com/AIsouler/GKD_subscription.git
synced 2025-12-20 00:35:17 +08:00
23 lines
628 B
TypeScript
23 lines
628 B
TypeScript
import { defineAppConfig } from '../types';
|
|
|
|
export default defineAppConfig({
|
|
id: 'com.csg.palmhall',
|
|
name: '南网在线',
|
|
groups: [
|
|
{
|
|
key: 1,
|
|
name: '更新弹窗',
|
|
activityIds: ['com.csg.palmhall.MainActivity'],
|
|
rules: '@[text="关闭"] + [text="升级"]',
|
|
snapshotUrls: ['https://gkd-kit.gitee.io/import/12700060'],
|
|
},
|
|
{
|
|
key: 2,
|
|
name: '首页广告弹窗',
|
|
activityIds: ['com.csg.palmhall.MainActivity'],
|
|
rules: 'View > Image +(3) [text="不再显示"][clickable=true]',
|
|
snapshotUrls: ['https://gkd-kit.gitee.io/import/12700075'],
|
|
},
|
|
],
|
|
});
|