mirror of
https://github.com/AIsouler/GKD_subscription.git
synced 2025-12-21 01:04:53 +08:00
47 lines
1.2 KiB
TypeScript
47 lines
1.2 KiB
TypeScript
import { defineAppConfig } from '../types';
|
|
|
|
export default defineAppConfig({
|
|
id: 'com.fengeek.f002',
|
|
name: 'fiil+',
|
|
groups: [
|
|
{
|
|
key: 1,
|
|
name: '开屏广告',
|
|
activityIds: ['com.fengeek.f002.WelcomeActivity'],
|
|
rules: [
|
|
{
|
|
matches: '[id="com.fengeek.f002:id/we_img_skip"]',
|
|
snapshotUrls: 'https://i.gkd.li/import/13068924',
|
|
},
|
|
],
|
|
},
|
|
{
|
|
enable: false,
|
|
key: 2,
|
|
name: '自动连接耳机',
|
|
desc: '点击连接耳机按钮,点击扫描到的第一个设备',
|
|
activityIds: ['com.fengeek.f002.MainActivity'],
|
|
rules: [
|
|
{
|
|
key: 0,
|
|
name: '点击连接耳机按钮',
|
|
quickFind: true,
|
|
action: 'clickCenter',
|
|
matches: '[clickable=true][id="com.fengeek.f002:id/av_elc"]',
|
|
snapshotUrls: 'https://i.gkd.li/import/13161277',
|
|
},
|
|
{
|
|
preKeys: [0],
|
|
key: 1,
|
|
name: '点击扫描到的设备',
|
|
quickFind: true,
|
|
action: 'clickNode',
|
|
matches:
|
|
'[clickable=true][id="com.fengeek.f002:id/device_container"]',
|
|
snapshotUrls: 'https://i.gkd.li/import/13161365',
|
|
},
|
|
],
|
|
},
|
|
],
|
|
});
|