mirror of
https://github.com/AIsouler/GKD_subscription.git
synced 2025-12-21 01:04:53 +08:00
31 lines
772 B
TypeScript
31 lines
772 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',
|
|
rules:
|
|
'@[id="com.sohu.sohuvideo:id/ivClose"] + LinearLayout [text="新版本上线啦"]',
|
|
snapshotUrls: 'https://i.gkd.li/i/13435504',
|
|
},
|
|
{
|
|
key: 2,
|
|
name: '青少年模式',
|
|
quickFind: true,
|
|
matchTime: 10000,
|
|
actionMaximum: 1,
|
|
resetMatch: 'app',
|
|
rules:
|
|
'@[id="com.sohu.sohuvideo:id/tv_ok"] -2 LinearLayout > [text="设置青少年模式"]',
|
|
snapshotUrls: 'https://i.gkd.li/i/13448876',
|
|
},
|
|
],
|
|
});
|