mirror of
https://github.com/AIsouler/GKD_subscription.git
synced 2025-12-24 02:35:25 +08:00
20 lines
492 B
TypeScript
20 lines
492 B
TypeScript
import { defineGkdApp } from '@gkd-kit/define';
|
|
|
|
export default defineGkdApp({
|
|
id: 'com.daimajia.gold',
|
|
name: '稀土掘金',
|
|
groups: [
|
|
{
|
|
key: 1,
|
|
name: '更新提示',
|
|
fastQuery: true,
|
|
matchTime: 10000,
|
|
actionMaximum: 1,
|
|
resetMatch: 'app',
|
|
rules:
|
|
'@[id="com.daimajia.gold:id/iv_close"] -n LinearLayout [id="com.daimajia.gold:id/tv_title"][text="发现新版本"]',
|
|
snapshotUrls: 'https://i.gkd.li/i/13498703',
|
|
},
|
|
],
|
|
});
|