mirror of
https://github.com/AIsouler/GKD_subscription.git
synced 2025-12-20 16:54:43 +08:00
33 lines
914 B
TypeScript
33 lines
914 B
TypeScript
import { defineAppConfig } from '../types';
|
|
|
|
export default defineAppConfig({
|
|
id: 'com.sohu.sohuvideo',
|
|
name: '搜狐视频',
|
|
groups: [
|
|
{
|
|
key: 1,
|
|
name: '版本更新',
|
|
quickFind: true,
|
|
matchTime: 10000,
|
|
actionMaximum: 1,
|
|
resetMatch: 'app',
|
|
activityIds: 'com.sohu.sohuvideo.ui.homepage.MainActivity',
|
|
rules:
|
|
'@[id="com.sohu.sohuvideo:id/ivClose"] + LinearLayout [text="新版本上线啦"]',
|
|
snapshotUrls: 'https://i.gkd.li/import/13435504',
|
|
},
|
|
{
|
|
key: 2,
|
|
name: '青少年模式',
|
|
quickFind: true,
|
|
matchTime: 10000,
|
|
actionMaximum: 1,
|
|
resetMatch: 'app',
|
|
activityIds: 'com.sohu.sohuvideo.ui.homepage.MainActivity',
|
|
rules:
|
|
'@[id="com.sohu.sohuvideo:id/tv_ok"] -2 LinearLayout > [text="设置青少年模式"]',
|
|
snapshotUrls: 'https://i.gkd.li/import/13448876',
|
|
},
|
|
],
|
|
});
|