mirror of
https://github.com/AIsouler/GKD_subscription.git
synced 2025-12-20 00:35:17 +08:00
38 lines
1016 B
TypeScript
38 lines
1016 B
TypeScript
import { defineAppConfig } from '../types';
|
||
|
||
export default defineAppConfig({
|
||
id: 'com.xtc.watch',
|
||
name: '小天才',
|
||
groups: [
|
||
{
|
||
key: 2,
|
||
name: '弹窗提醒',
|
||
desc: '已知包括APP升级提醒与开启通知提醒,自动点击关闭。',
|
||
enable: false,
|
||
quickFind: true,
|
||
activityIds: [
|
||
'com.xtc.widget.phone.popup.activity.CustomActivity14',
|
||
'com.xtc.widget.phone.popup.activity.CustomActivity13',
|
||
],
|
||
rules: '[id="com.xtc.watch:id/iv_close"]',
|
||
snapshotUrls: [
|
||
'https://i.gkd.li/import/13197390',
|
||
'https://i.gkd.li/import/13063274',
|
||
],
|
||
},
|
||
{
|
||
key: 3,
|
||
name: '开启通知提醒',
|
||
enable: false,
|
||
quickFind: true,
|
||
activityIds: ['com.xtc.watch.view.home.activity.XtcHomeActivity'],
|
||
rules: [
|
||
{
|
||
matches: ['[id="com.xtc.watch:id/iv_notify_permission_close"]'],
|
||
snapshotUrls: ['https://i.gkd.li/import/13059965'],
|
||
},
|
||
],
|
||
},
|
||
],
|
||
});
|