From 35d413c66544c7cf15f71872b36172c489cedb5a Mon Sep 17 00:00:00 2001 From: walklty <47232102+walklty@users.noreply.github.com> Date: Wed, 18 Oct 2023 00:12:49 +0800 Subject: [PATCH] =?UTF-8?q?feat(=E8=AE=AF=E9=A3=9E=E8=BE=93=E5=85=A5?= =?UTF-8?q?=E6=B3=95):=20=E5=BC=80=E5=B1=8F=E5=B9=BF=E5=91=8A=20(#1168)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * feat(讯飞输入法): 开屏广告 * feat(讯飞输入法): 开屏广告-规则优化 --------- Co-authored-by: 二刺螈 close #1166 --- src/apps/com.iflytek.inputmethod.ts | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 src/apps/com.iflytek.inputmethod.ts diff --git a/src/apps/com.iflytek.inputmethod.ts b/src/apps/com.iflytek.inputmethod.ts new file mode 100644 index 00000000..c4666cc9 --- /dev/null +++ b/src/apps/com.iflytek.inputmethod.ts @@ -0,0 +1,23 @@ +import { defineAppConfig } from '../types'; + +export default defineAppConfig({ + id: 'com.iflytek.inputmethod', + name: '讯飞输入法', + groups: [ + { + key: 0, + name: '开屏广告', + desc: '点击右上方跳过按钮', + matchLauncher: true, + quickFind: true, + activityIds: + 'com.iflytek.inputmethod.settingsnew.splash.activity.NewSplashActivity', + rules: [ + { + matches: '[id="com.iflytek.inputmethod.settingsnew:id/ll_skip"]', + snapshotUrls: 'https://gkd-kit.gitee.io/import/12906597', + }, + ], + }, + ], +});