mirror of
https://github.com/AIsouler/GKD_subscription.git
synced 2025-12-23 02:05:06 +08:00
25 lines
524 B
TypeScript
25 lines
524 B
TypeScript
import { defineGkdApp } from '@gkd-kit/define';
|
|
|
|
export default defineGkdApp({
|
|
id: 'cmccwm.mobilemusic',
|
|
name: '咪咕音乐',
|
|
groups: [
|
|
{
|
|
key: 1,
|
|
name: '更新提示',
|
|
fastQuery: true,
|
|
matchTime: 10000,
|
|
actionMaximum: 1,
|
|
resetMatch: 'app',
|
|
rules: [
|
|
{
|
|
action: 'back',
|
|
activityIds: '.ui.base.MainActivity',
|
|
matches: '[text="发现新版本"]',
|
|
snapshotUrls: 'https://i.gkd.li/i/13448898',
|
|
},
|
|
],
|
|
},
|
|
],
|
|
});
|