mirror of
https://github.com/AIsouler/GKD_subscription.git
synced 2025-12-19 08:15:11 +08:00
56 lines
1.5 KiB
TypeScript
56 lines
1.5 KiB
TypeScript
import { defineGkdApp } from '@gkd-kit/define';
|
|
|
|
export default defineGkdApp({
|
|
id: 'com.tencent.djcity',
|
|
name: '掌上道聚城',
|
|
groups: [
|
|
{
|
|
key: 0,
|
|
name: '开屏广告',
|
|
quickFind: true,
|
|
matchTime: 10000,
|
|
actionMaximum: 1,
|
|
resetMatch: 'app',
|
|
rules: [
|
|
{
|
|
key: 0,
|
|
action: 'clickCenter',
|
|
matches: '[text*="跳过"][text.length<10][visibleToUser=true]',
|
|
snapshotUrls: 'https://i.gkd.li/i/15137209',
|
|
},
|
|
],
|
|
},
|
|
{
|
|
key: 1,
|
|
name: '全屏广告-弹窗广告',
|
|
desc: '点击关闭',
|
|
rules: [
|
|
{
|
|
activityIds: 'com.tencent.djcity.activities.homepage.MainActivity',
|
|
matches:
|
|
'[vid="main_container"] >7 View[childCount=7] > View[childCount=2] > View[index=1] > ImageView',
|
|
exampleUrls:
|
|
'https://m.gkd.li/57941037/151fd8a5-8c44-4368-a8ba-3563df44e492',
|
|
snapshotUrls: 'https://i.gkd.li/i/14229532',
|
|
},
|
|
],
|
|
},
|
|
{
|
|
key: 2,
|
|
name: '功能类-"签到成功"弹窗',
|
|
desc: '点击"好的"',
|
|
actionMaximum: 1,
|
|
resetMatch: 'app',
|
|
rules: [
|
|
{
|
|
activityIds: 'com.tencent.djcity.activities.homepage.MainActivity',
|
|
matches: '@View[clickable=true] > [desc="好的"]',
|
|
exampleUrls:
|
|
'https://m.gkd.li/57941037/22ba335b-c225-41f0-97be-a91377ebc121',
|
|
snapshotUrls: 'https://i.gkd.li/i/14229554',
|
|
},
|
|
],
|
|
},
|
|
],
|
|
});
|