mirror of
https://github.com/AIsouler/GKD_subscription.git
synced 2025-12-20 16:54:43 +08:00
47 lines
1.2 KiB
TypeScript
47 lines
1.2 KiB
TypeScript
import { defineGkdApp } from '@gkd-kit/define';
|
|
|
|
export default defineGkdApp({
|
|
id: 'com.boohee.one',
|
|
name: '薄荷健康',
|
|
groups: [
|
|
{
|
|
key: 1,
|
|
name: '更新提示',
|
|
matchTime: 10000,
|
|
actionMaximum: 1,
|
|
resetMatch: 'app',
|
|
rules: [
|
|
{
|
|
activityIds: 'com.boohee.library.update.UpdateDialogActivity',
|
|
matches:
|
|
'@[id="com.boohee.one:id/tv_ignore"] + [id="com.boohee.one:id/tv_update"]',
|
|
snapshotUrls: 'https://i.gkd.li/i/12716918',
|
|
},
|
|
],
|
|
},
|
|
{
|
|
key: 2,
|
|
name: '全屏广告-发现页弹窗广告',
|
|
activityIds: 'com.sensorsdata.sf.ui.view.DialogActivity',
|
|
rules:
|
|
'LinearLayout[childCount=2] > @ImageView[id=null][clickable=true] + ImageView',
|
|
snapshotUrls: 'https://i.gkd.li/i/12716970',
|
|
},
|
|
{
|
|
key: 10,
|
|
name: '权限提示-通知权限',
|
|
desc: '点击关闭',
|
|
matchTime: 10000,
|
|
actionMaximum: 1,
|
|
resetMatch: 'app',
|
|
rules: [
|
|
{
|
|
activityIds: '.app.account.ui.activity.MsgCategoryActivityV2',
|
|
matches: '[id="com.boohee.one:id/img_close_push"]',
|
|
snapshotUrls: 'https://i.gkd.li/i/12716950',
|
|
},
|
|
],
|
|
},
|
|
],
|
|
});
|