From 3cadd721283ba7cdac504f1aaa4bb2a31506b782 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Daphn=C3=A9=20Popin?= Date: Wed, 27 Nov 2024 14:18:04 +0100 Subject: [PATCH] Extension default shortcut to open panel (#8942) --- extension/manifest.json | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/extension/manifest.json b/extension/manifest.json index 2a63fd7b6dbe..8a7a47479ea8 100644 --- a/extension/manifest.json +++ b/extension/manifest.json @@ -15,6 +15,14 @@ "action": { "default_title": "Open Dust side panel" }, + "commands": { + "_execute_action": { + "suggested_key": { + "default": "Ctrl + Right", + "mac": "Command + Right" + } + } + }, "side_panel": { "default_path": "main.html" },