mirror of
https://github.com/AIsouler/GKD_subscription.git
synced 2025-12-17 15:25:08 +08:00
22 lines
538 B
TypeScript
22 lines
538 B
TypeScript
import type { AppConfig } from '../types';
|
|
|
|
export default <AppConfig>{
|
|
id: 'com.dragon.read',
|
|
groups: [
|
|
{
|
|
key: 0,
|
|
name: '番茄免费小说-阅读页面底部广告',
|
|
rules: [
|
|
{
|
|
activityIds: 'com.dragon.read.ad.banner.ui',
|
|
matches: '@[isClickable=true] TextView[text=`关闭此条广告`]',
|
|
},
|
|
{
|
|
activityIds: 'com.dragon.read.reader.ReaderActivity',
|
|
matches: '@ImageView - LinearLayout TextView[text=`广告`]',
|
|
},
|
|
],
|
|
},
|
|
],
|
|
};
|