mirror of
https://github.com/AIsouler/GKD_subscription.git
synced 2025-12-23 10:15:31 +08:00
25 lines
570 B
TypeScript
25 lines
570 B
TypeScript
import { defineGkdApp } from '@gkd-kit/define';
|
|
|
|
export default defineGkdApp({
|
|
id: 'com.sohu.sohuvideo',
|
|
name: '搜狐视频',
|
|
groups: [
|
|
{
|
|
key: 1,
|
|
name: '更新提示',
|
|
fastQuery: true,
|
|
matchTime: 10000,
|
|
actionMaximum: 1,
|
|
resetMatch: 'app',
|
|
rules: [
|
|
{
|
|
activityIds: '.ui.homepage.MainActivity',
|
|
matches:
|
|
'@[id="com.sohu.sohuvideo:id/ivClose"] + LinearLayout [text="新版本上线啦"]',
|
|
snapshotUrls: 'https://i.gkd.li/i/13435504',
|
|
},
|
|
],
|
|
},
|
|
],
|
|
});
|