mirror of
https://github.com/AIsouler/GKD_subscription.git
synced 2025-12-23 02:05:06 +08:00
28 lines
776 B
TypeScript
28 lines
776 B
TypeScript
import { defineAppConfig } from '../types';
|
|
|
|
export default defineAppConfig({
|
|
id: 'ctrip.android.view',
|
|
name: '携程旅行',
|
|
groups: [
|
|
{
|
|
key: 0,
|
|
name: '开屏广告',
|
|
activityIds: 'ctrip.android.publicproduct.home.view.CtripHomeActivity',
|
|
rules: [
|
|
'LinearLayout[childCount=2] > TextView + TextView[text="跳过"||text="跳过广告"]',
|
|
],
|
|
snapshotUrls: [
|
|
'https://i.gkd.li/import/12472613',
|
|
'https://i.gkd.li/import/12511071',
|
|
],
|
|
},
|
|
{
|
|
key: 1,
|
|
name: '更新弹窗',
|
|
activityIds: 'ctrip.android.publicproduct.home.view.CtripHomeActivity',
|
|
rules: '[text*="用户已升级"] < * + [desc="关闭"]',
|
|
snapshotUrls: 'https://i.gkd.li/import/13218347',
|
|
},
|
|
],
|
|
});
|