mirror of
https://github.com/AIsouler/GKD_subscription.git
synced 2025-12-23 02:05:06 +08:00
26 lines
528 B
TypeScript
26 lines
528 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: [
|
|
{
|
|
matches: [
|
|
'[text="发现新版本"]',
|
|
'[id="com.daimajia.gold:id/iv_close"]',
|
|
],
|
|
snapshotUrls: 'https://i.gkd.li/i/13498703',
|
|
},
|
|
],
|
|
},
|
|
],
|
|
});
|