mirror of
https://github.com/AIsouler/GKD_subscription.git
synced 2025-12-19 00:05:19 +08:00
29 lines
779 B
TypeScript
29 lines
779 B
TypeScript
import { defineAppConfig } from '../types';
|
|
|
|
export default defineAppConfig({
|
|
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`]',
|
|
],
|
|
},
|
|
{
|
|
enable: false,
|
|
key: 2,
|
|
name: '设置默认浏览器提示',
|
|
desc: '点击取消',
|
|
quickFind: true,
|
|
actionMaximum: 1,
|
|
activityIds: 'com.ucpro.BrowserActivity',
|
|
rules: '@Button[text="取消"] + Button[text="去设置"]',
|
|
snapshotUrls: 'https://gkd-kit.gitee.io/import/13249469',
|
|
},
|
|
],
|
|
});
|