mirror of
https://github.com/AIsouler/GKD_subscription.git
synced 2025-12-21 09:15:11 +08:00
98 lines
2.8 KiB
TypeScript
98 lines
2.8 KiB
TypeScript
import { defineGkdApp } from '@gkd-kit/define';
|
|
|
|
export default defineGkdApp({
|
|
id: 'com.dianping.v1',
|
|
name: '大众点评',
|
|
groups: [
|
|
{
|
|
key: 1,
|
|
name: '全屏广告-主页推荐关注弹窗',
|
|
matchTime: 10000,
|
|
actionMaximum: 1,
|
|
resetMatch: 'app',
|
|
rules: [
|
|
{
|
|
activityIds: 'com.dianping.main.guide.SplashActivity',
|
|
matches:
|
|
'FrameLayout[id="android:id/content"] >2 FrameLayout > ImageView + FrameLayout[id=null][desc="关闭"][clickable=true]',
|
|
snapshotUrls: 'https://i.gkd.li/i/12727011',
|
|
},
|
|
],
|
|
},
|
|
{
|
|
key: 2,
|
|
name: '权限提示-通知权限',
|
|
matchTime: 10000,
|
|
actionMaximum: 1,
|
|
resetMatch: 'app',
|
|
rules: [
|
|
{
|
|
matches:
|
|
'[text="去开启"][clickable=true] +2 @FrameLayout[clickable=true] > ImageView',
|
|
action: 'clickCenter', // clickNode无响应
|
|
snapshotUrls: 'https://i.gkd.li/i/12727070',
|
|
},
|
|
],
|
|
},
|
|
{
|
|
key: 3,
|
|
name: '局部广告-关闭[签到开红包]',
|
|
desc: '点击右下角悬浮图片右上角的x图标',
|
|
activityIds: ['com.dianping.v1.NovaMainActivity'],
|
|
rules:
|
|
'[id="com.dianping.v1:id/float_image"] + [id="com.dianping.v1:id/close"][clickable=true]',
|
|
snapshotUrls: 'https://i.gkd.li/i/12727366',
|
|
},
|
|
{
|
|
key: 4,
|
|
name: '全屏广告-弹窗广告',
|
|
rules: [
|
|
{
|
|
key: 0,
|
|
activityIds: 'com.dianping.v1.NovaMainActivity',
|
|
fastQuery: true,
|
|
matches: '[id="com.dianping.v1:id/operate_cross_icon"]',
|
|
snapshotUrls: 'https://i.gkd.li/i/13538340',
|
|
},
|
|
],
|
|
},
|
|
{
|
|
key: 5,
|
|
name: '分段广告-推荐页卡片广告',
|
|
rules: [
|
|
{
|
|
key: 0,
|
|
activityIds: 'com.dianping.v1.NovaMainActivity',
|
|
matches:
|
|
'@[desc="reculike_delete"][clickable=true][visibleToUser=true] +3 [childCount=2]',
|
|
snapshotUrls: [
|
|
'https://i.gkd.li/i/13759369',
|
|
'https://i.gkd.li/i/14332054', // 限定 +3 [childCount=2] 防止误触
|
|
],
|
|
},
|
|
{
|
|
preKeys: 0,
|
|
key: 1,
|
|
action: 'clickCenter',
|
|
activityIds: 'com.dianping.v1.NovaMainActivity',
|
|
matches: '@[clickable=true] > [text="重复出现"]',
|
|
snapshotUrls: [
|
|
'https://i.gkd.li/i/14238381',
|
|
'https://i.gkd.li/i/14269115',
|
|
],
|
|
},
|
|
{
|
|
preKeys: 0,
|
|
key: 2,
|
|
fastQuery: true,
|
|
activityIds: 'com.dianping.v1.NovaMainActivity',
|
|
matches: '[text$="重复出现"][clickable=true]',
|
|
exampleUrls:
|
|
'https://m.gkd.li/57941037/010c0314-e89b-468f-8143-691925a308a6',
|
|
snapshotUrls: 'https://i.gkd.li/i/14393256',
|
|
},
|
|
],
|
|
},
|
|
],
|
|
});
|