mirror of
https://github.com/AIsouler/GKD_subscription.git
synced 2025-12-20 00:35:17 +08:00
25 lines
701 B
TypeScript
25 lines
701 B
TypeScript
import { defineAppConfig } from '../types';
|
|
|
|
export default defineAppConfig({
|
|
id: 'com.ping.cimoc',
|
|
name: '芝士漫画',
|
|
groups: [
|
|
{
|
|
key: 0,
|
|
name: '开屏广告',
|
|
activityIds: 'com.ping.cimoc.ui.activity.SplashActivity',
|
|
matchLauncher: true,
|
|
rules: '[id="com.ping.cimoc:id/splash_container"] >n [text="跳过"]',
|
|
snapshotUrls: 'https://i.gkd.li/import/13187773',
|
|
},
|
|
{
|
|
key: 1,
|
|
name: '广告弹窗',
|
|
activityIds: 'com.ping.cimoc.ui.activity.MainActivity',
|
|
rules:
|
|
'ImageView < FrameLayout + FrameLayout > FrameLayout[childCount=1] > ImageView',
|
|
snapshotUrls: 'https://i.gkd.li/import/13187751',
|
|
},
|
|
],
|
|
});
|