mirror of
https://github.com/AIsouler/GKD_subscription.git
synced 2025-12-20 00:35:17 +08:00
100 lines
2.8 KiB
TypeScript
100 lines
2.8 KiB
TypeScript
import { defineAppConfig } from '../types';
|
|
|
|
export default defineAppConfig({
|
|
id: 'com.duowan.kiwi',
|
|
name: '虎牙直播',
|
|
groups: [
|
|
{
|
|
key: 1,
|
|
name: '青少年模式',
|
|
activityIds: [
|
|
'com.duowan.kiwi.homepage.Homepage', // 缺少快照
|
|
'com.duowan.kiwi.immersepage.impl.ImmersePageActivity',
|
|
],
|
|
quickFind: true,
|
|
|
|
rules:
|
|
'[id="com.duowan.kiwi:id/hyui_dialog_button_positive"][text="我知道了"]',
|
|
snapshotUrls: 'https://i.gkd.li/import/12908790',
|
|
},
|
|
{
|
|
key: 2,
|
|
name: '局部广告-直播间悬浮广告',
|
|
activityIds: 'com.duowan.kiwi.liveroom.ChannelPage',
|
|
rules: [
|
|
{
|
|
key: 0,
|
|
quickFind: true,
|
|
matches: '[id="com.duowan.kiwi:id/ad_close"]',
|
|
snapshotUrls: [
|
|
'https://i.gkd.li/import/12901045',
|
|
'https://i.gkd.li/import/12901044',
|
|
],
|
|
},
|
|
{
|
|
key: 1,
|
|
quickFind: true,
|
|
matches: '[id="com.duowan.kiwi:id/game_header_close"]',
|
|
snapshotUrls: [
|
|
'https://i.gkd.li/import/13395604',
|
|
'https://i.gkd.li/import/13395606',
|
|
],
|
|
},
|
|
{
|
|
key: 2,
|
|
matches:
|
|
'[id="com.duowan.kiwi:id/popup_banner"] >2 [id="com.duowan.kiwi:id/ui_count_down"]',
|
|
snapshotUrls: ['https://i.gkd.li/import/13417245'],
|
|
},
|
|
{
|
|
key: 3,
|
|
matches:
|
|
'[id="com.duowan.kiwi:id/miniapp_content_container"] FrameLayout > ViewGroup[childCount=2] > @ViewGroup[clickable=true] > ImageView',
|
|
snapshotUrls: 'https://i.gkd.li/import/13401266',
|
|
},
|
|
],
|
|
},
|
|
{
|
|
key: 3,
|
|
name: '更新提示',
|
|
enable: false,
|
|
activityIds: 'com.duowan.kiwi.homepage.Homepage',
|
|
quickFind: true,
|
|
matchTime: 10000,
|
|
actionMaximum: 1,
|
|
resetMatch: 'app',
|
|
rules: [
|
|
{
|
|
matches: '@ImageView[id="com.duowan.kiwi:id/upgrade_cancel"]',
|
|
snapshotUrls: 'https://i.gkd.li/import/13440833',
|
|
},
|
|
],
|
|
},
|
|
{
|
|
key: 4,
|
|
name: '全屏广告-弹窗广告',
|
|
rules: [
|
|
{
|
|
key: 0,
|
|
activityIds: 'com.duowan.kiwi.homepage.Homepage',
|
|
matches:
|
|
'[id="com.duowan.kiwi:id/animation_view"] + [id="com.duowan.kiwi:id/v_close"]',
|
|
snapshotUrls: 'https://i.gkd.li/import/13625453',
|
|
},
|
|
],
|
|
},
|
|
{
|
|
enable: false,
|
|
key: 5,
|
|
name: '功能类-root提示',
|
|
desc: '点击确认',
|
|
quickFind: true,
|
|
matchTime: 10000,
|
|
actionMaximum: 1,
|
|
resetMatch: 'app',
|
|
rules: '[text^="您的设备已经被ROOT"] + LinearLayout [text="确认"]',
|
|
snapshotUrls: 'https://i.gkd.li/import/13536744',
|
|
},
|
|
],
|
|
});
|