mirror of
https://github.com/AIsouler/GKD_subscription.git
synced 2025-12-23 02:05:06 +08:00
* feat(天猫精灵): 开屏广告 * fix(天猫精灵): 增加开屏广告一种情况 --------- Co-authored-by: dlh <du__th@163.com>
25 lines
674 B
TypeScript
25 lines
674 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://gkd-kit.gitee.io/import/12814080'],
|
|
},
|
|
{
|
|
action: 'clickNode',
|
|
matches: ['[id="com.alibaba.ailabs.tg:id/operation_ad_skip_text"]'],
|
|
snapshotUrls: ['https://gkd-kit.gitee.io/import/12819744'],
|
|
},
|
|
],
|
|
},
|
|
],
|
|
});
|