mirror of
https://github.com/AIsouler/GKD_subscription.git
synced 2025-12-20 08:44:55 +08:00
24 lines
523 B
TypeScript
24 lines
523 B
TypeScript
import { defineAppConfig } from '../types';
|
|
|
|
export default defineAppConfig({
|
|
id: 'com.example.administrator.searchpicturetool',
|
|
name: '搜图神器',
|
|
groups: [
|
|
{
|
|
key: 1,
|
|
name: '更新提示',
|
|
desc: '点击取消',
|
|
quickFind: true,
|
|
matchTime: 10000,
|
|
actionMaximum: 1,
|
|
resetMatch: 'app',
|
|
rules: [
|
|
{
|
|
matches: '@[text="取消"] + [text="立即升级"]',
|
|
snapshotUrls: 'https://i.gkd.li/import/13989147',
|
|
},
|
|
],
|
|
},
|
|
],
|
|
});
|