mirror of
https://github.com/AIsouler/GKD_subscription.git
synced 2025-12-24 02:35:25 +08:00
24 lines
639 B
TypeScript
24 lines
639 B
TypeScript
import { defineGkdApp } from '@gkd-kit/define';
|
|
|
|
export default defineGkdApp({
|
|
id: 'com.xfinity.digitalhome',
|
|
name: 'Xfinity',
|
|
groups: [
|
|
{
|
|
key: 1,
|
|
name: '全屏广告',
|
|
desc: '点击关闭',
|
|
rules: [
|
|
{
|
|
fastQuery: true,
|
|
activityIds: '.features.overview.activities.MainActivity',
|
|
matches:
|
|
'@[clickable=true][visibleToUser=true] > [desc="close"] <<n [vid="details_modal_compose_body"]',
|
|
exampleUrls: 'https://e.gkd.li/23c04f23-efb1-4562-a376-151ee4749e8d',
|
|
snapshotUrls: 'https://i.gkd.li/i/18563031',
|
|
},
|
|
],
|
|
},
|
|
],
|
|
});
|