mirror of
https://github.com/AIsouler/GKD_subscription.git
synced 2025-12-23 18:25:15 +08:00
34 lines
977 B
TypeScript
34 lines
977 B
TypeScript
import { defineAppConfig } from '../types';
|
|
|
|
export default defineAppConfig({
|
|
id: 'com.alibaba.ailabs.tg',
|
|
name: '天猫精灵',
|
|
groups: [
|
|
{
|
|
key: 0,
|
|
name: '开屏广告',
|
|
activityIds: 'com.alibaba.ailabs.tg.splash.WelcomeActivity',
|
|
rules: [
|
|
{
|
|
matches: ['[id="com.alibaba.ailabs.tg:id/fl_ad"] >n [text^="跳过"]'],
|
|
snapshotUrls: ['https://i.gkd.li/import/12814080'],
|
|
},
|
|
{
|
|
action: 'clickNode',
|
|
matches: ['[id="com.alibaba.ailabs.tg:id/operation_ad_skip_text"]'],
|
|
snapshotUrls: ['https://i.gkd.li/import/12819744'],
|
|
},
|
|
],
|
|
},
|
|
{
|
|
key: 1,
|
|
name: '更新弹窗',
|
|
quickFind: true,
|
|
activityIds: 'com.alibaba.ailabs.tg.activity.HomeActivity',
|
|
rules:
|
|
'[id="com.alibaba.ailabs.tg:id/ll_download"] + [id="com.alibaba.ailabs.tg:id/va_dialog_cancel"]',
|
|
snapshotUrls: 'https://i.gkd.li/import/13296332',
|
|
},
|
|
],
|
|
});
|