mirror of
https://github.com/AIsouler/GKD_subscription.git
synced 2025-12-21 09:15:11 +08:00
49 lines
1.3 KiB
TypeScript
49 lines
1.3 KiB
TypeScript
import { defineAppConfig } from '../types';
|
|
|
|
export default defineAppConfig({
|
|
id: 'com.able.wisdomtree',
|
|
name: '知到',
|
|
groups: [
|
|
{
|
|
key: 1,
|
|
name: '开屏广告',
|
|
quickFind: true,
|
|
activityIds:
|
|
'com.example.advertisement_business.advertisement.AdvertisementActivity',
|
|
rules: [
|
|
{
|
|
matches: ['[id="com.able.wisdomtree:id/tv_skip"]'],
|
|
snapshotUrls: 'https://i.gkd.li/import/12838048',
|
|
},
|
|
],
|
|
},
|
|
{
|
|
enable: false,
|
|
key: 2,
|
|
name: '消息推送通知',
|
|
desc: '自动点击暂不开启。',
|
|
quickFind: true,
|
|
matchTime: 10000,
|
|
actionMaximum: 1,
|
|
resetMatch: 'app',
|
|
rules: 'TextView[id="com.able.wisdomtree:id/negativeButton"]',
|
|
snapshotUrls: [
|
|
'https://i.gkd.li/import/13458779',
|
|
'https://i.gkd.li/import/13623441',
|
|
'https://i.gkd.li/import/13695447',
|
|
],
|
|
},
|
|
{
|
|
enable: false,
|
|
key: 3,
|
|
name: '升级提醒',
|
|
desc: '自动点击忽略。',
|
|
quickFind: true,
|
|
activityIds:
|
|
'com.example.advertisement_business.advertisement.AdvertisementActivity',
|
|
rules: '[text="更新"] -n [text="忽略"]',
|
|
snapshotUrls: 'https://i.gkd.li/import/13458796',
|
|
},
|
|
],
|
|
});
|