mirror of
https://github.com/AIsouler/GKD_subscription.git
synced 2025-12-22 01:35:32 +08:00
36 lines
850 B
TypeScript
36 lines
850 B
TypeScript
import { defineAppConfig } from '../types';
|
|
|
|
export default defineAppConfig({
|
|
id: 'com.upupoo.apu.mobile',
|
|
name: 'UPUPOO动态壁纸',
|
|
groups: [
|
|
{
|
|
key: 0,
|
|
name: '开屏广告',
|
|
matchTime: 10000,
|
|
resetMatch: 'app',
|
|
actionMaximum: 1,
|
|
rules:
|
|
'FrameLayout > FrameLayout[childCount>2] > @View[clickable=true] + TextView',
|
|
snapshotUrls: [
|
|
'https://i.gkd.li/import/13830230',
|
|
'https://i.gkd.li/import/14052232',
|
|
],
|
|
},
|
|
{
|
|
key: 1,
|
|
name: '青少年模式',
|
|
desc: '点击"我知道了"',
|
|
matchTime: 10000,
|
|
resetMatch: 'app',
|
|
actionMaximum: 1,
|
|
rules: [
|
|
{
|
|
matches: '[desc="青少年模式"] +3 [desc="我知道了"]',
|
|
snapshotUrls: 'https://i.gkd.li/import/14052188',
|
|
},
|
|
],
|
|
},
|
|
],
|
|
});
|