mirror of
https://github.com/AIsouler/GKD_subscription.git
synced 2025-12-20 00:35:17 +08:00
76 lines
2.1 KiB
TypeScript
76 lines
2.1 KiB
TypeScript
import { defineAppConfig } from '../types';
|
|
|
|
export default defineAppConfig({
|
|
id: 'com.cainiao.wireless',
|
|
name: '菜鸟',
|
|
groups: [
|
|
{
|
|
key: 0,
|
|
name: '开屏广告',
|
|
quickFind: true,
|
|
activityIds: 'com.cainiao.wireless.homepage.view.activity.AdsActivity',
|
|
rules: [
|
|
{
|
|
matches: '[text^="跳过"][text.length<=4]',
|
|
snapshotUrls: [
|
|
'https://i.gkd.li/import/12901758',
|
|
'https://i.gkd.li/import/12724823',
|
|
],
|
|
},
|
|
],
|
|
},
|
|
{
|
|
key: 1,
|
|
name: '包裹页面-弹窗广告',
|
|
quickFind: true,
|
|
activityIds: [
|
|
'com.taobao.cainiao.logistic.ui.view.LogisticDetailActivity',
|
|
],
|
|
rules: 'RelativeLayout > ImageView[desc="关闭"]',
|
|
snapshotUrls: ['https://i.gkd.li/import/12914371'],
|
|
},
|
|
{
|
|
key: 2,
|
|
name: '包裹页面-地图底部横条广告',
|
|
activityIds: [
|
|
'com.taobao.cainiao.logistic.ui.view.LogisticDetailActivity',
|
|
],
|
|
rules: 'View[desc="立即查看"] +2 ImageView[id=null]',
|
|
snapshotUrls: ['https://i.gkd.li/import/12914450'],
|
|
},
|
|
{
|
|
key: 3,
|
|
name: '寄包裹-弹窗广告',
|
|
enable: false,
|
|
activityIds: [
|
|
'com.alipay.mobile.nebulax.integration.mpaas.activity.NebulaActivity$Main',
|
|
],
|
|
rules: 'View + Image + View[text.length>0]',
|
|
snapshotUrls: ['https://i.gkd.li/import/13042279'],
|
|
},
|
|
{
|
|
key: 4,
|
|
name: '升级提示',
|
|
enable: false,
|
|
quickFind: true,
|
|
activityIds: [
|
|
'com.cainiao.wireless.homepage.view.activity.HomePageActivity',
|
|
],
|
|
rules: '[text="确认"] - [text="取消"]',
|
|
snapshotUrls: ['https://i.gkd.li/import/13042207'],
|
|
},
|
|
{
|
|
key: 5,
|
|
name: '开启消息弹窗',
|
|
desc: '自动点击关闭。',
|
|
enable: false,
|
|
quickFind: true,
|
|
activityIds: [
|
|
'com.cainiao.wireless.homepage.view.activity.HomePageActivity',
|
|
],
|
|
rules: '[id="com.cainiao.wireless:id/gg_dialog_base_close"]',
|
|
snapshotUrls: ['https://i.gkd.li/import/13068573'],
|
|
},
|
|
],
|
|
});
|