From f355820686ca53875108c4cfeac18b32a4357a0f Mon Sep 17 00:00:00 2001 From: walklty <47232102+walklty@users.noreply.github.com> Date: Mon, 16 Oct 2023 00:32:31 +0800 Subject: [PATCH] =?UTF-8?q?feat(=E8=A7=82=E5=AF=9F=E8=80=85=E7=BD=91):=20?= =?UTF-8?q?=E5=BC=80=E5=B1=8F=E5=B9=BF=E5=91=8A=20(#1078)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit close #1075 --- src/apps/cn.guancha.app.ts | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 src/apps/cn.guancha.app.ts diff --git a/src/apps/cn.guancha.app.ts b/src/apps/cn.guancha.app.ts new file mode 100644 index 00000000..18a1f09a --- /dev/null +++ b/src/apps/cn.guancha.app.ts @@ -0,0 +1,22 @@ +import { defineAppConfig } from '../types'; + +export default defineAppConfig({ + id: 'cn.guancha.app', + name: '观察者', + groups: [ + { + key: 0, + name: '开屏广告', + desc: '点击开屏右上角“跳过”按钮', + matchLauncher: true, + quickFind: true, + activityIds: 'cn.guancha.app.ui.activity.WelcomeActivity', + rules: [ + { + matches: 'TextView[id="cn.guancha.app:id/tv_jump_btn"][text="跳过"]', + snapshotUrls: 'https://gkd-kit.gitee.io/import/12907063', + }, + ], + }, + ], +});