mirror of
https://github.com/AIsouler/GKD_subscription.git
synced 2025-12-20 16:54:43 +08:00
31 lines
742 B
TypeScript
31 lines
742 B
TypeScript
import { defineAppConfig } from '../types';
|
|
|
|
export default defineAppConfig({
|
|
id: 'cn.damai',
|
|
name: '大麦',
|
|
groups: [
|
|
{
|
|
key: 0,
|
|
name: '开屏广告',
|
|
matchTime: 10000,
|
|
actionMaximum: 1,
|
|
resetMatch: 'app',
|
|
rules: '[id="cn.damai:id/homepage_advert_pb"]',
|
|
snapshotUrls: 'https://i.gkd.li/import/12472623',
|
|
},
|
|
{
|
|
key: 1,
|
|
name: '弹窗广告',
|
|
rules: [
|
|
{
|
|
key: 0,
|
|
activityIds: 'cn.damai.homepage.MainActivity',
|
|
matches:
|
|
'[id="cn.damai:id/homepage_popup_window_image"] + [id="cn.damai:id/homepage_popup_window_close_btn"]',
|
|
snapshotUrls: 'https://i.gkd.li/import/13627900',
|
|
},
|
|
],
|
|
},
|
|
],
|
|
});
|