mirror of
https://github.com/AIsouler/GKD_subscription.git
synced 2025-12-20 00:35:17 +08:00
45 lines
1.2 KiB
TypeScript
45 lines
1.2 KiB
TypeScript
import { defineAppConfig } from '../types';
|
|
|
|
export default defineAppConfig({
|
|
id: 'cn.wsds.gamemaster',
|
|
name: '迅游手游加速器',
|
|
groups: [
|
|
{
|
|
key: 1,
|
|
name: '开屏广告',
|
|
desc: '点击跳过',
|
|
matchTime: 10000,
|
|
actionMaximum: 1,
|
|
resetMatch: 'app',
|
|
rules: [
|
|
{
|
|
matches:
|
|
'@View <2 FrameLayout[childCount=3] <2 FrameLayout[childCount=2] < [vid="splash_container"]',
|
|
snapshotUrls: 'https://i.gkd.li/import/13930391',
|
|
},
|
|
],
|
|
},
|
|
{
|
|
key: 2,
|
|
name: '分段广告-卡片广告',
|
|
desc: '点击X-点击不感兴趣',
|
|
rules: [
|
|
{
|
|
key: 0,
|
|
activityIds: 'cn.wsds.gamemaster.ui.gamedetails.ActivityGameDetails',
|
|
matches:
|
|
'[id="cn.wsds.gamemaster:id/feed_ad"] [text="立即下载"] + ImageView[clickable=true]',
|
|
snapshotUrls: 'https://i.gkd.li/import/13930398',
|
|
},
|
|
{
|
|
preKeys: 0,
|
|
quickFind: true,
|
|
activityIds: 'cn.wsds.gamemaster.ui.gamedetails.ActivityGameDetails',
|
|
matches: '[text="不感兴趣"]',
|
|
snapshotUrls: 'https://i.gkd.li/import/13930399',
|
|
},
|
|
],
|
|
},
|
|
],
|
|
});
|