mirror of
https://github.com/AIsouler/GKD_subscription.git
synced 2025-12-20 08:44:55 +08:00
24 lines
615 B
TypeScript
24 lines
615 B
TypeScript
import { defineAppConfig } from '../types';
|
|
|
|
export default defineAppConfig({
|
|
id: 'com.xfani.app',
|
|
name: '稀饭动漫',
|
|
groups: [
|
|
{
|
|
key: 0,
|
|
name: '开屏广告',
|
|
activityIds: 'com.xfani.app.MainActivity',
|
|
matchLauncher: true,
|
|
rules: 'TextView[text^="跳过"]',
|
|
snapshotUrls: 'https://i.gkd.li/import/13188526',
|
|
},
|
|
{
|
|
key: 1,
|
|
name: '广告弹窗',
|
|
activityIds: 'com.xfani.app.MainActivity',
|
|
rules: 'ImageView - LinearLayout - FrameLayout > FrameLayout > ImageView',
|
|
snapshotUrls: 'https://i.gkd.li/import/13188550',
|
|
},
|
|
],
|
|
});
|