mirror of
https://github.com/AIsouler/GKD_subscription.git
synced 2025-12-21 01:04:53 +08:00
33 lines
818 B
TypeScript
33 lines
818 B
TypeScript
import { defineAppConfig } from '../types';
|
|
|
|
export default defineAppConfig({
|
|
id: 'com.redfinger.app',
|
|
name: '红手指云手机',
|
|
groups: [
|
|
{
|
|
key: 1,
|
|
name: '更新提示',
|
|
matchTime: 10000,
|
|
actionMaximum: 1,
|
|
resetMatch: 'app',
|
|
quickFind: true,
|
|
rules:
|
|
'[id="com.redfinger.app:id/btn_update"] + [id="com.redfinger.app:id/iv_close"]',
|
|
snapshotUrls: 'https://i.gkd.li/import/13761821',
|
|
},
|
|
{
|
|
key: 2,
|
|
name: '全屏广告-弹窗广告',
|
|
rules: [
|
|
{
|
|
key: 0,
|
|
activityIds: 'com.redfinger.app.activity.MainActivity',
|
|
quickFind: true,
|
|
matches: '[id="com.redfinger.app:id/rl_screen_ad_close"]',
|
|
snapshotUrls: 'https://i.gkd.li/import/13761825',
|
|
},
|
|
],
|
|
},
|
|
],
|
|
});
|