mirror of
https://github.com/AIsouler/GKD_subscription.git
synced 2025-12-20 16:54:43 +08:00
37 lines
912 B
TypeScript
37 lines
912 B
TypeScript
import { defineAppConfig } from '../types';
|
|
|
|
export default defineAppConfig({
|
|
id: 'com.feiyu.morin',
|
|
name: '魔音MORIN',
|
|
groups: [
|
|
{
|
|
key: 0,
|
|
name: '弹窗广告',
|
|
rules: [
|
|
{
|
|
key: 0,
|
|
name: '腾讯广告',
|
|
activityIds: 'com.feiyu.morin.view.main.MainActivity',
|
|
matches:
|
|
'ImageView - FrameLayout > FrameLayout[childCount=1] > ImageView[childCount=0]',
|
|
snapshotUrls: 'https://i.gkd.li/import/13521556',
|
|
},
|
|
],
|
|
},
|
|
{
|
|
key: 1,
|
|
name: '卡片式广告',
|
|
rules: [
|
|
{
|
|
key: 0,
|
|
name: '腾讯广告',
|
|
activityIds: 'com.feiyu.morin.view.main.MainActivity',
|
|
matches:
|
|
'ImageView + LinearLayout + LinearLayout + FrameLayout > ImageView',
|
|
snapshotUrls: 'https://i.gkd.li/import/13521680',
|
|
},
|
|
],
|
|
},
|
|
],
|
|
});
|