mirror of
https://github.com/AIsouler/GKD_subscription.git
synced 2025-12-18 07:45:10 +08:00
37 lines
967 B
TypeScript
37 lines
967 B
TypeScript
import { defineAppConfig } from '../types';
|
|
|
|
export default defineAppConfig({
|
|
id: 'com.tencent.karaoke',
|
|
name: '全民K歌',
|
|
groups: [
|
|
{
|
|
key: 1,
|
|
name: '局部广告-卡片式广告',
|
|
rules: [
|
|
{
|
|
key: 0,
|
|
name: '动态页面-卡片式广告',
|
|
activityIds: 'com.tencent.karaoke.module.main.ui.MainTabActivity',
|
|
matches: 'RelativeLayout > [text="广告"] + ImageView',
|
|
snapshotUrls: 'https://i.gkd.li/i/13334798',
|
|
},
|
|
],
|
|
},
|
|
{
|
|
key: 2,
|
|
name: '全屏广告-弹窗广告',
|
|
rules: [
|
|
{
|
|
key: 1,
|
|
name: '活动弹窗',
|
|
activityIds:
|
|
'com.tencent.karaoke.module.splash.ui.SplashBaseActivity',
|
|
matches:
|
|
'[desc$="霸屏的按钮"] < ViewGroup + ViewGroup[childCount=1] > ViewGroup[childCount=0]',
|
|
snapshotUrls: 'https://i.gkd.li/i/13363281',
|
|
},
|
|
],
|
|
},
|
|
],
|
|
});
|