mirror of
https://github.com/AIsouler/GKD_subscription.git
synced 2025-12-21 01:04:53 +08:00
* feat(系统服务组件):游戏加速广告弹窗 * chore(actions): check_format_lint --------- Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
22 lines
570 B
TypeScript
22 lines
570 B
TypeScript
import { defineAppConfig } from '../types';
|
|
|
|
export default defineAppConfig({
|
|
id: 'com.miui.securityadd',
|
|
name: '系统服务组件',
|
|
groups: [
|
|
{
|
|
key: 1,
|
|
name: '全屏广告-游戏加速广告弹窗',
|
|
desc: '点击X',
|
|
rules: [
|
|
{
|
|
activityIds: 'com.miui.gamebooster.GameBoosterRichWebActivity',
|
|
matches:
|
|
'[id="com.miui.securityadd:id/webViewContainer"] [text="活动图片"] +2 Image[clickable=true]',
|
|
snapshotUrls: 'https://i.gkd.li/import/13914659',
|
|
},
|
|
],
|
|
},
|
|
],
|
|
});
|