mirror of
https://github.com/AIsouler/GKD_subscription.git
synced 2025-12-21 17:25:11 +08:00
61 lines
1.7 KiB
TypeScript
61 lines
1.7 KiB
TypeScript
import { defineAppConfig } from '../types';
|
|
|
|
export default defineAppConfig({
|
|
id: 'com.oray.sunlogin',
|
|
name: '向日葵远程控制',
|
|
groups: [
|
|
{
|
|
key: -1,
|
|
name: '开屏广告',
|
|
matchTime: 10000,
|
|
actionMaximum: 1,
|
|
resetMatch: 'app',
|
|
quickFind: true,
|
|
rules: [
|
|
{
|
|
matches: '[id="com.oray.sunlogin:id/ll_skip_ad"]',
|
|
snapshotUrls: 'https://i.gkd.li/import/13197052',
|
|
},
|
|
],
|
|
},
|
|
{
|
|
key: 0,
|
|
name: '瓜子会员弹窗',
|
|
desc: '点击右上角[关闭]',
|
|
quickFind: true,
|
|
activityIds: 'com.oray.sunlogin.application.Main',
|
|
rules: '[id="com.oray.sunlogin:id/close"][text="关闭"]',
|
|
snapshotUrls: [
|
|
'https://i.gkd.li/import/13195950',
|
|
'https://i.gkd.li/import/12910411',
|
|
'https://i.gkd.li/import/13197454', //如果没有text条件则会和这一条误触
|
|
],
|
|
exampleUrls:
|
|
'https://github.com/gkd-kit/inspect/assets/38517192/61d335f0-a85a-4e26-80fe-6bc0d1742bc0',
|
|
},
|
|
{
|
|
matchTime: 30000,
|
|
key: 1,
|
|
name: '版本更新',
|
|
quickFind: true,
|
|
rules: [
|
|
{
|
|
matches:
|
|
'[text="立即更新"] <2 * > [id="com.oray.sunlogin:id/button_cancel"][text="以后再说"]',
|
|
snapshotUrls: 'https://i.gkd.li/import/13195560',
|
|
},
|
|
],
|
|
},
|
|
{
|
|
key: 2,
|
|
name: '设备列表-卡片广告',
|
|
activityIds: 'com.oray.sunlogin.application.Main',
|
|
quickFind: true,
|
|
rules: '[id="com.oray.sunlogin:id/fl_close_advertise"]',
|
|
snapshotUrls: 'https://i.gkd.li/import/13207785',
|
|
exampleUrls:
|
|
'https://github.com/gkd-kit/inspect/assets/38517192/071e5512-e1aa-4a8c-8440-009d6f0f35ff',
|
|
},
|
|
],
|
|
});
|