mirror of
https://github.com/AIsouler/GKD_subscription.git
synced 2025-12-20 16:54:43 +08:00
47 lines
1.3 KiB
TypeScript
47 lines
1.3 KiB
TypeScript
import { defineAppConfig } from '../types';
|
|
|
|
export default defineAppConfig({
|
|
id: 'com.cebbank.mobile.cemb',
|
|
name: '光大银行',
|
|
groups: [
|
|
{
|
|
key: 0,
|
|
name: '开屏广告',
|
|
quickFind: true,
|
|
matchTime: 10000,
|
|
actionMaximum: 1,
|
|
resetMatch: 'app',
|
|
rules: '[text*="跳过"][text.length<=10]',
|
|
snapshotUrls: 'https://i.gkd.li/import/13471079',
|
|
},
|
|
{
|
|
key: 1,
|
|
name: '更新弹窗',
|
|
quickFind: true,
|
|
matchTime: 10000,
|
|
actionMaximum: 1,
|
|
resetMatch: 'app',
|
|
activityIds: 'com.cebbank.mobile.cemb.view.CustomizedDialog',
|
|
rules: '@[text="不再提示"] +2 [text="立即更新"]',
|
|
snapshotUrls: 'https://i.gkd.li/import/12727241',
|
|
},
|
|
{
|
|
key: 2,
|
|
name: '首页广告弹窗',
|
|
quickFind: true,
|
|
matchTime: 10000,
|
|
actionMaximum: 1,
|
|
resetMatch: 'app',
|
|
activityIds: [
|
|
'com.cebbank.mobile.cemb.ui.activity.SplashActivity',
|
|
'com.cebbank.mobile.cemb.ui.activity.HomeActivity',
|
|
],
|
|
rules: '[id="com.cebbank.mobile.cemb:id/home_advertising_iv_close"]',
|
|
snapshotUrls: [
|
|
'https://i.gkd.li/import/12727248',
|
|
'https://i.gkd.li/import/13471080', // activityIds: 'com.cebbank.mobile.cemb.ui.activity.HomeActivity',
|
|
],
|
|
},
|
|
],
|
|
});
|