mirror of
https://github.com/AIsouler/GKD_subscription.git
synced 2025-12-21 01:04:53 +08:00
43 lines
1.1 KiB
TypeScript
43 lines
1.1 KiB
TypeScript
import { defineAppConfig } from '../types';
|
|
|
|
export default defineAppConfig({
|
|
id: 'com.yunxiang.wuyu',
|
|
name: '特狗APP',
|
|
groups: [
|
|
{
|
|
key: 2,
|
|
name: '通知提示-公告弹窗',
|
|
matchTime: 10000,
|
|
actionMaximum: 1,
|
|
resetMatch: 'app',
|
|
rules: '[desc^="人生嘛"] +4 ImageView[clickable=true]',
|
|
snapshotUrls: 'https://i.gkd.li/i/13455634',
|
|
},
|
|
{
|
|
key: 3,
|
|
name: '全屏广告-弹窗广告',
|
|
quickFind: true,
|
|
matchTime: 10000,
|
|
actionMaximum: 1,
|
|
resetMatch: 'app',
|
|
activityIds: 'com.yunxiang.wuyu.MainActivity',
|
|
rules: [
|
|
{
|
|
name: '"x"型',
|
|
matches:
|
|
'ImageView < @ViewGroup[clickable=true] < ViewGroup +n ViewGroup [text="广告"]',
|
|
snapshotUrls: 'https://i.gkd.li/i/13455628',
|
|
},
|
|
{
|
|
name: '"跳过"型',
|
|
matches: [
|
|
'TextView[text="广告"]',
|
|
'@ViewGroup > TextView[text="跳过"]',
|
|
],
|
|
snapshotUrls: 'https://i.gkd.li/i/13455629',
|
|
},
|
|
],
|
|
},
|
|
],
|
|
});
|