From 22362ec98002d9537f5f24b1ea7da0e0eaf84a19 Mon Sep 17 00:00:00 2001 From: jiuqianyuan <39406781+jiuqianyuan@users.noreply.github.com> Date: Tue, 10 Oct 2023 23:28:49 +0800 Subject: [PATCH] =?UTF-8?q?feat(vivo=E6=B5=8F=E8=A7=88=E5=99=A8):=20?= =?UTF-8?q?=E5=BC=80=E5=B1=8F=E5=B9=BF=E5=91=8A=20(#845)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * feat(vivo浏览器) - 开屏广告 * chore(actions): check_format_lint --------- Co-authored-by: github-actions[bot] --- src/apps/com.vivo.browser.ts | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 src/apps/com.vivo.browser.ts diff --git a/src/apps/com.vivo.browser.ts b/src/apps/com.vivo.browser.ts new file mode 100644 index 00000000..802a03b2 --- /dev/null +++ b/src/apps/com.vivo.browser.ts @@ -0,0 +1,15 @@ +import { defineAppConfig } from '../types'; + +export default defineAppConfig({ + id: 'com.vivo.browser', + name: 'vivo浏览器', + groups: [ + { + key: 0, + name: '开屏广告', + activityIds: 'com.vivo.browser.BrowserActivity', + rules: 'TextView[clickable = true && text ^= "跳过" && text.length = 4]', + snapshotUrls: 'https://gkd-kit.songe.li/import/12847431', + }, + ], +});