mirror of
https://github.com/AIsouler/GKD_subscription.git
synced 2025-12-20 00:35:17 +08:00
* Create cn.missevan.ts * chore(actions): check_format_lint --------- Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com> close #1081
36 lines
878 B
TypeScript
36 lines
878 B
TypeScript
import { defineAppConfig } from '../types';
|
|
|
|
export default defineAppConfig({
|
|
id: 'cn.missevan',
|
|
name: '猫耳FM',
|
|
groups: [
|
|
{
|
|
key: 0,
|
|
name: '开屏广告',
|
|
desc: '点击:跳过',
|
|
matchLauncher: true,
|
|
quickFind: true,
|
|
activityIds: 'cn.missevan.activity.MainActivity',
|
|
rules: [
|
|
{
|
|
matches: '[id="cn.missevan:id/skip_title"][text="跳过"]',
|
|
snapshotUrls: 'https://gkd-kit.gitee.io/import/12908434',
|
|
},
|
|
],
|
|
},
|
|
{
|
|
key: 1,
|
|
name: '青少年提示',
|
|
desc: '点击:知道了',
|
|
activityIds: 'cn.missevan.activity.MainActivity',
|
|
quickFind: true,
|
|
rules: [
|
|
{
|
|
matches: '[id="cn.missevan:id/iKnowTextView"][text="我知道了"]',
|
|
snapshotUrls: 'https://gkd-kit.gitee.io/import/12908433',
|
|
},
|
|
],
|
|
},
|
|
],
|
|
});
|