mirror of
https://github.com/AIsouler/GKD_subscription.git
synced 2025-12-22 09:45:11 +08:00
40 lines
1.2 KiB
TypeScript
40 lines
1.2 KiB
TypeScript
import { defineAppConfig } from '../types';
|
|
|
|
export default defineAppConfig({
|
|
id: 'com.taobao.idlefish',
|
|
name: '闲鱼',
|
|
groups: [
|
|
{
|
|
key: 1,
|
|
name: '通知提示',
|
|
matchTime: 10000,
|
|
actionMaximum: 1,
|
|
resetMatch: 'app',
|
|
activityIds:
|
|
'com.idlefish.flutterbridge.flutterboost.boost.FishFlutterBoostTransparencyActivity',
|
|
rules: '[desc^="开启系统通知"] > ImageView[clickable=true][desc=null]',
|
|
snapshotUrls: 'https://i.gkd.li/import/13538351',
|
|
},
|
|
{
|
|
key: 2,
|
|
name: '权限提示',
|
|
actionMaximum: 1,
|
|
activityIds: 'com.taobao.idlefish.maincontainer.activity.MainActivity',
|
|
rules:
|
|
'@Button[text="取消"] <<n FrameLayout >n TextView[text*="手机信息"]',
|
|
snapshotUrls: 'https://i.gkd.li/import/13620277',
|
|
},
|
|
{
|
|
key: 3,
|
|
name: '更新提示',
|
|
quickFind: true,
|
|
matchTime: 10000,
|
|
actionMaximum: 1,
|
|
resetMatch: 'app',
|
|
activityIds: 'com.taobao.idlefish.maincontainer.activity.MainActivity',
|
|
rules: '[text="立即升级"] -2 [text="暂不升级"]',
|
|
snapshotUrls: 'https://i.gkd.li/import/13832272',
|
|
},
|
|
],
|
|
});
|