mirror of
https://github.com/AIsouler/GKD_subscription.git
synced 2025-12-18 07:45:10 +08:00
18 lines
428 B
TypeScript
18 lines
428 B
TypeScript
import type { AppConfig } from '../types';
|
|
|
|
export default <AppConfig>{
|
|
id: 'com.quark.browser',
|
|
name: `夸克浏览器`,
|
|
groups: [
|
|
{
|
|
key: 0,
|
|
name: '小说阅读页面底部广告',
|
|
activityIds: 'com.ucpro.BrowserActivity',
|
|
rules: [
|
|
'[id=`com.quark.browser:id/tv_close_ad`][text=`关闭广告`]',
|
|
'[id=`com.quark.browser:id/ad_close_layout_container`]',
|
|
],
|
|
},
|
|
],
|
|
};
|