From fc96e79a8f4f5a2984b2f42a78310484579bc0c5 Mon Sep 17 00:00:00 2001 From: EvolvedGhost <92856393+EvolvedGhost@users.noreply.github.com> Date: Wed, 1 Jan 2025 19:10:07 +0800 Subject: [PATCH] =?UTF-8?q?feat(=E8=8D=A3=E8=80=80=E6=B5=8F=E8=A7=88?= =?UTF-8?q?=E5=99=A8):=20=E5=BC=80=E5=B1=8F=E5=B9=BF=E5=91=8A=20(#666)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: EvolvedGhost <92856393+EvolvedGhost@users.noreply.github.com> Co-authored-by: AIsouler --- src/apps/com.hihonor.baidu.browser.ts | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 src/apps/com.hihonor.baidu.browser.ts diff --git a/src/apps/com.hihonor.baidu.browser.ts b/src/apps/com.hihonor.baidu.browser.ts new file mode 100644 index 00000000..331f6948 --- /dev/null +++ b/src/apps/com.hihonor.baidu.browser.ts @@ -0,0 +1,23 @@ +import { defineGkdApp } from '@gkd-kit/define'; + +export default defineGkdApp({ + id: 'com.hihonor.baidu.browser', + name: '荣耀浏览器', + groups: [ + { + key: 0, + name: '开屏广告', + fastQuery: true, + matchTime: 10000, + actionMaximum: 1, + resetMatch: 'app', + priorityTime: 10000, + rules: [ + { + matches: 'TextView[text^="跳过"][text.length<10][visibleToUser=true]', + snapshotUrls: 'https://i.gkd.li/i/18279202', + }, + ], + }, + ], +});