mirror of
https://github.com/AIsouler/GKD_subscription.git
synced 2025-12-22 01:35:32 +08:00
39 lines
967 B
TypeScript
39 lines
967 B
TypeScript
import { defineGkdApp } from '@gkd-kit/define';
|
|
|
|
export default defineGkdApp({
|
|
id: 'com.ctm',
|
|
name: 'CTM Buddy',
|
|
groups: [
|
|
{
|
|
key: 1,
|
|
name: '全屏广告-弹窗广告',
|
|
desc: '点击关闭',
|
|
matchTime: 10000,
|
|
actionMaximum: 1,
|
|
resetMatch: 'app',
|
|
rules: [
|
|
{
|
|
fastQuery: true,
|
|
activityIds: '.home.page.MainActivity',
|
|
matches: '[id="com.ctm:id/iv_close"]',
|
|
exampleUrls: 'https://e.gkd.li/fbaa53c3-109d-47b3-b85c-373d93e420d9',
|
|
snapshotUrls: 'https://i.gkd.li/i/13350575',
|
|
},
|
|
],
|
|
},
|
|
{
|
|
key: 2,
|
|
name: '局部广告-底部横幅广告',
|
|
rules: [
|
|
{
|
|
fastQuery: true,
|
|
activityIds: 'com.ctm.home.page.MainActivity',
|
|
matches:
|
|
'[id="com.ctm:id/iv_bottom_adv"] + [id="com.ctm:id/btn_close"]',
|
|
snapshotUrls: 'https://i.gkd.li/i/13350612',
|
|
},
|
|
],
|
|
},
|
|
],
|
|
});
|