From c17c565dc1aec63a69c178359a1db4a259c6109d Mon Sep 17 00:00:00 2001 From: jiuqianyuan <39406781+jiuqianyuan@users.noreply.github.com> Date: Fri, 15 Dec 2023 19:32:02 +0800 Subject: [PATCH] =?UTF-8?q?feat(Edge):=E6=B6=88=E6=81=AF=E9=80=9A=E7=9F=A5?= =?UTF-8?q?=20(#3139)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit close #3119 --- src/apps/com.microsoft.emmx.ts | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 src/apps/com.microsoft.emmx.ts diff --git a/src/apps/com.microsoft.emmx.ts b/src/apps/com.microsoft.emmx.ts new file mode 100644 index 00000000..c2cc6273 --- /dev/null +++ b/src/apps/com.microsoft.emmx.ts @@ -0,0 +1,19 @@ +import { defineAppConfig } from '../types'; + +export default defineAppConfig({ + id: 'com.microsoft.emmx', + name: 'Edge', + groups: [ + { + key: 3, + name: '消息通知', + matchTime: 10000, + actionMaximum: 1, + resetMatch: 'app', + quickFind: true, + activityIds: 'org.chromium.chrome.browser.ChromeTabbedActivity', + rules: '[text="允许通知"] + [text="不,谢谢"]', + snapshotUrls: 'https://i.gkd.li/import/13646187', + }, + ], +});