mirror of
https://github.com/AIsouler/GKD_subscription.git
synced 2025-12-22 17:55:12 +08:00
* Create com.ikang.official.ts * Delete src/apps/com.ikang.official.ts * feat(小红书): 消息页底部通知横幅 * feat(小红书): 关闭请求通知弹窗 * feat(多点): bugs 修复 --------- Co-authored-by: 二刺螈 <i@songe.li>
54 lines
1.4 KiB
TypeScript
54 lines
1.4 KiB
TypeScript
import { defineAppConfig } from '../types';
|
|
|
|
export default defineAppConfig({
|
|
id: 'com.wm.dmall',
|
|
name: '多点',
|
|
groups: [
|
|
{
|
|
key: 0,
|
|
name: '开屏广告',
|
|
quickFind: true,
|
|
matchTime: 10000,
|
|
actionMaximum: 1,
|
|
resetMatch: 'app',
|
|
rules: '[id="com.wm.dmall:id/splashSkipTextView"]',
|
|
snapshotUrls: ['https://i.gkd.li/import/13197630'],
|
|
},
|
|
{
|
|
key: 1,
|
|
name: '首页-弹窗广告',
|
|
quickFind: true,
|
|
activityIds: 'com.wm.dmall.MainActivity',
|
|
rules: '[id="com.wm.dmall:id/advert_close"]',
|
|
snapshotUrls: ['https://i.gkd.li/import/13197627'],
|
|
},
|
|
{
|
|
key: 2,
|
|
name: '首页-浮窗广告',
|
|
quickFind: true,
|
|
activityIds: 'com.wm.dmall.MainActivity',
|
|
rules: [
|
|
'@[id="com.wm.dmall:id/iv_close"] + [id="com.wm.dmall:id/view_float"]',
|
|
'[id="com.wm.dmall:id/close_iV"]',
|
|
],
|
|
snapshotUrls: [
|
|
'https://i.gkd.li/import/13197634',
|
|
'https://gkd-kit.gitee.io/import/13246242', //id误触
|
|
],
|
|
},
|
|
{
|
|
key: 3,
|
|
name: '更新提示',
|
|
quickFind: true,
|
|
activityIds: 'com.wm.dmall.MainActivity',
|
|
rules: {
|
|
matches: [
|
|
'[id="com.wm.dmall:id/update_confirm_btn"]',
|
|
'[id="com.wm.dmall:id/close_btn"]',
|
|
],
|
|
snapshotUrls: ['https://gkd-kit.gitee.io/import/13234668'],
|
|
},
|
|
},
|
|
],
|
|
});
|