mirror of
https://github.com/AIsouler/GKD_subscription.git
synced 2025-12-18 07:45:10 +08:00
40 lines
1.2 KiB
TypeScript
40 lines
1.2 KiB
TypeScript
import { defineAppConfig } from '../types';
|
|
|
|
export default defineAppConfig({
|
|
id: 'com.tencent.cmocmna',
|
|
name: '腾讯手游加速器',
|
|
groups: [
|
|
{
|
|
key: 0,
|
|
name: '开屏广告',
|
|
activityIds: 'com.tencent.mocmna.activity.MainActivity',
|
|
matchLauncher: true,
|
|
quickFind: true,
|
|
rules: '[text$="跳过"]',
|
|
snapshotUrls: 'https://i.gkd.li/import/12847303',
|
|
},
|
|
{
|
|
key: 1,
|
|
name: '悬浮广告',
|
|
activityIds: 'com.tencent.mocmna.activity.MainActivity',
|
|
rules:
|
|
'ViewGroup[childCount=2] > @ImageView[id!=null][clickable=true] + ImageView',
|
|
snapshotUrls: [
|
|
'https://i.gkd.li/import/12847323',
|
|
'https://i.gkd.li/import/12847336',
|
|
'https://i.gkd.li/import/13063271', // 限定 [clickable=true] 防止在此快照中点击左上角头像
|
|
],
|
|
},
|
|
{
|
|
key: 2,
|
|
name: '信息流内嵌广告',
|
|
activityIds: 'com.tencent.mocmna.activity.MainActivity',
|
|
rules: 'ImageView - ViewGroup > ImageView + ImageView + ImageView',
|
|
snapshotUrls: [
|
|
'https://i.gkd.li/import/12847340',
|
|
'https://i.gkd.li/import/12847364',
|
|
],
|
|
},
|
|
],
|
|
});
|