mirror of
https://github.com/AIsouler/GKD_subscription.git
synced 2025-12-20 00:35:17 +08:00
25 lines
690 B
TypeScript
25 lines
690 B
TypeScript
import { defineAppConfig } from '../types';
|
|
|
|
export default defineAppConfig({
|
|
id: 'com.onethingcloud.android',
|
|
name: '网心云',
|
|
groups: [
|
|
{
|
|
key: 0,
|
|
matchLauncher: true,
|
|
name: '开屏广告',
|
|
activityIds: 'com.onethingcloud.android.MainActivity',
|
|
rules: 'View[desc^="跳过"][desc.length=6]',
|
|
snapshotUrls: 'https://gkd-kit.gitee.io/import/12841174',
|
|
},
|
|
{
|
|
key: 1,
|
|
name: '广告弹窗',
|
|
activityIds: 'com.onethingcloud.android.MainActivity',
|
|
rules:
|
|
'FrameLayout >8 View > ImageView + ImageView + ImageView[clickable=true]',
|
|
snapshotUrls: 'https://gkd-kit.gitee.io/import/12841171',
|
|
},
|
|
],
|
|
});
|