mirror of
https://github.com/AIsouler/GKD_subscription.git
synced 2025-12-22 01:35:32 +08:00
35 lines
944 B
TypeScript
35 lines
944 B
TypeScript
import { defineAppConfig } from '../types';
|
|
|
|
export default defineAppConfig({
|
|
id: 'com.yuque.mobile.android.app',
|
|
name: '语雀',
|
|
groups: [
|
|
{
|
|
key: 0,
|
|
name: '未分类-"用语雀公众号"横幅提示',
|
|
desc: '点x取消提示',
|
|
activityIds:
|
|
'com.yuque.mobile.android.app.rn.activity.ReactNativeMainActivity',
|
|
rules: [
|
|
{
|
|
matches: 'TextView[text="了解更多"] + ViewGroup[clickable=true]',
|
|
snapshotUrls: 'https://i.gkd.li/i/12911014',
|
|
},
|
|
],
|
|
},
|
|
{
|
|
key: 1,
|
|
name: '功能类-自动原图',
|
|
desc: '如果没有勾选原图, 则勾选',
|
|
activityIds:
|
|
'com.yuque.mobile.android.app.rn.activity.ReactNativeMainActivity',
|
|
rules: [
|
|
{
|
|
matches: 'ViewGroup[desc="原图未勾选"][clickable=true][childCount=2]',
|
|
snapshotUrls: 'https://i.gkd.li/i/12911013',
|
|
},
|
|
],
|
|
},
|
|
],
|
|
});
|