mirror of
https://github.com/AIsouler/GKD_subscription.git
synced 2025-12-20 16:54:43 +08:00
51 lines
1.3 KiB
TypeScript
51 lines
1.3 KiB
TypeScript
import { defineAppConfig } from '../types';
|
|
|
|
export default defineAppConfig({
|
|
id: 'com.duoduo.cimoc.su',
|
|
name: '速映影院',
|
|
groups: [
|
|
{
|
|
key: 1,
|
|
name: '全屏广告-首页弹窗广告',
|
|
desc: '点击X',
|
|
rules: [
|
|
{
|
|
activityIds: 'com.duoduo.cimoc.su.MainActivity',
|
|
matches:
|
|
'ViewGroup[childCount=4] <2 ViewGroup[childCount=2] + * > ViewGroup[visibleToUser=true]',
|
|
snapshotUrls: 'https://i.gkd.li/i/13999281',
|
|
},
|
|
],
|
|
},
|
|
{
|
|
key: 2,
|
|
name: '局部广告-"我的"页面卡片广告',
|
|
desc: '点击X',
|
|
rules: [
|
|
{
|
|
activityIds: 'com.duoduo.cimoc.su.MainActivity',
|
|
matches:
|
|
'@TextView[clickable=true] <2 View[childCount=2] -2 [text="广告"]',
|
|
snapshotUrls: 'https://i.gkd.li/i/13999283',
|
|
},
|
|
],
|
|
},
|
|
{
|
|
key: 3,
|
|
name: '局部广告-卡片广告',
|
|
desc: '关闭视频播放页、搜索页广告',
|
|
rules: [
|
|
{
|
|
activityIds: 'com.duoduo.cimoc.su.MainActivity',
|
|
matches:
|
|
'FrameLayout[childCount=4] > FrameLayout > ImageView[visibleToUser=true]',
|
|
snapshotUrls: [
|
|
'https://i.gkd.li/i/13999284',
|
|
'https://i.gkd.li/i/13999376',
|
|
],
|
|
},
|
|
],
|
|
},
|
|
],
|
|
});
|