mirror of
https://github.com/AIsouler/GKD_subscription.git
synced 2025-12-20 08:44:55 +08:00
32 lines
779 B
TypeScript
32 lines
779 B
TypeScript
import { defineAppConfig } from '../types';
|
|
|
|
export default defineAppConfig({
|
|
id: 'com.tencent.karaoke',
|
|
name: '全民K歌',
|
|
groups: [
|
|
{
|
|
key: 0,
|
|
name: '开屏广告',
|
|
matchTime: 10000,
|
|
actionMaximum: 1,
|
|
resetMatch: 'app',
|
|
quickFind: true,
|
|
rules: '[text^="跳过"][text.length<10]',
|
|
snapshotUrls: 'https://i.gkd.li/import/13302490',
|
|
},
|
|
{
|
|
key: 1,
|
|
name: '卡片式广告',
|
|
rules: [
|
|
{
|
|
key: 0,
|
|
name: '动态页面-卡片式广告',
|
|
activityIds: 'com.tencent.karaoke.module.main.ui.MainTabActivity',
|
|
matches: 'RelativeLayout > [text="广告"] + ImageView',
|
|
snapshotUrls: 'https://i.gkd.li/import/13334798',
|
|
},
|
|
],
|
|
},
|
|
],
|
|
});
|