This repository was archived by the owner on Apr 19, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 396
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
close #3773
- Loading branch information
Showing
1 changed file
with
44 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,44 @@ | ||
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', | ||
}, | ||
], | ||
}, | ||
], | ||
}); |