mirror of
https://github.com/AIsouler/GKD_subscription.git
synced 2025-12-22 01:35:32 +08:00
39 lines
1.0 KiB
TypeScript
39 lines
1.0 KiB
TypeScript
import { defineGkdApp } from '@gkd-kit/define';
|
|
|
|
export default defineGkdApp({
|
|
id: 'cn.speedtest.lite',
|
|
name: '网速管家极速版',
|
|
groups: [
|
|
{
|
|
key: 1,
|
|
name: '更新提示',
|
|
matchTime: 10000,
|
|
actionMaximum: 1,
|
|
resetMatch: 'app',
|
|
rules: [
|
|
{
|
|
activityIds: '.main.MainActivity',
|
|
matches:
|
|
'@[id="cn.speedtest.lite:id/iv_close"] - [id="cn.speedtest.lite:id/ll_main_pane"] >2 [id="cn.speedtest.lite:id/tv_upgrade_content"]',
|
|
snapshotUrls: 'https://i.gkd.li/i/12715483',
|
|
},
|
|
],
|
|
},
|
|
{
|
|
key: 10,
|
|
name: '全屏广告-新人专享优惠弹窗',
|
|
matchTime: 10000,
|
|
actionMaximum: 1,
|
|
resetMatch: 'app',
|
|
rules: [
|
|
{
|
|
activityIds: 'cn.speedtest.lite.main.MainActivity',
|
|
matches:
|
|
'@[id="cn.speedtest.lite:id/iv_close"] - RelativeLayout >n [id="cn.speedtest.lite:id/ad_banner"]',
|
|
snapshotUrls: 'https://i.gkd.li/i/12715511',
|
|
},
|
|
],
|
|
},
|
|
],
|
|
});
|