mirror of
https://github.com/AIsouler/GKD_subscription.git
synced 2025-12-22 01:35:32 +08:00
26 lines
717 B
TypeScript
26 lines
717 B
TypeScript
import { defineAppConfig } from '../types';
|
|
|
|
export default defineAppConfig({
|
|
id: 'com.jd.jdlite',
|
|
name: '京喜特价',
|
|
groups: [
|
|
{
|
|
key: 1,
|
|
name: '全屏广告-首页广告弹窗',
|
|
activityIds: 'com.jd.jdlite.MainFrameActivity',
|
|
rules: '@[desc="关闭页面"] - FrameLayout >n [text="极速版弹窗"]',
|
|
snapshotUrls: 'https://i.gkd.li/import/12727396',
|
|
},
|
|
{
|
|
key: 10,
|
|
name: '通知提示-请求通知权限弹窗',
|
|
matchTime: 10000,
|
|
actionMaximum: 1,
|
|
resetMatch: 'app',
|
|
rules:
|
|
'@ImageView[clickable=true] - LinearLayout > [text="开启消息通知"]',
|
|
snapshotUrls: 'https://i.gkd.li/import/13062969',
|
|
},
|
|
],
|
|
});
|