Files
AIsouler-GKD_subscription/src/apps/com.xingin.xhs.ts
2024-02-29 17:58:34 +08:00

97 lines
2.9 KiB
TypeScript

import { defineAppConfig } from '../types';
export default defineAppConfig({
id: 'com.xingin.xhs',
name: '小红书',
groups: [
{
key: 1,
name: '通知提示-通知权限弹窗',
quickFind: true,
actionMaximum: 1,
matchTime: 30000,
resetMatch: 'app',
rules: [
{
matches: '@ImageView <2 FrameLayout >2 [text^="打开通知"]',
snapshotUrls: [
'https://i.gkd.li/i/13195753', //com.xingin.xhs.index.v2.IndexActivityV2
'https://i.gkd.li/i/13222356', //com.xingin.xhs.notification.NotificationAuthorizationTranslucentActivity
'https://i.gkd.li/i/13256145', //com.huawei.android.launcher.unihome.UniHomeLauncher
'https://i.gkd.li/i/13255627', //com.xingin.matrix.notedetail.r10.comment.r10.NoteCommentActivity
],
},
{
matches: '@ImageView <2 FrameLayout - [text^="打开通知"]',
snapshotUrls: 'https://i.gkd.li/i/13250418',
},
],
},
{
key: 2,
name: '更新提示',
quickFind: true,
actionMaximum: 1,
matchTime: 10000,
resetMatch: 'app',
rules: [
{
key: 0,
matches: '@ImageView <2 * + * > [text="NEW"]',
snapshotUrls: [
'https://i.gkd.li/i/13246890',
'https://i.gkd.li/i/13741680',
'https://i.gkd.li/i/14445193',
],
},
],
},
{
key: 3,
name: '分段广告-信息流广告',
desc: '长按"赞助"/"广告"标识的卡片-点"不感兴趣"',
quickFind: true,
activityIds: 'com.xingin.xhs.index.v2.IndexActivityV2',
rules: [
{
key: 0,
action: 'longClick',
name: '长按"赞助"/"广告"卡片',
matches:
'@FrameLayout[clickable=true] > LinearLayout TextView[text="赞助"||text="广告"][visibleToUser=true]',
excludeMatches: 'RecyclerView > LinearLayout > [text^="不喜欢"]',
snapshotUrls: [
'https://i.gkd.li/i/13455503',
'https://i.gkd.li/i/13470690',
'https://i.gkd.li/i/14392171', // 使用 excludeMatches 防止反复触发规则
],
},
{
preKeys: 0,
name: '点"不感兴趣"',
matches:
'RecyclerView > @LinearLayout[index=0] > TextView[text^="不喜欢"]',
snapshotUrls: [
'https://i.gkd.li/i/13455500',
'https://i.gkd.li/i/14392187',
],
},
],
},
{
key: 4,
name: '全屏广告-优惠券弹窗',
rules: [
{
key: 0,
activityIds: 'com.xingin.reactnative.ui.XhsReactTranslucentActivity',
quickFind: true,
matches:
'@ImageView[visibleToUser=true] < * -2 * > [text="你有新人券待领取"]',
snapshotUrls: 'https://i.gkd.li/i/14391484',
},
],
},
],
});