From a37f34eeac2a985aac91800b36ed1f16a96ad72a Mon Sep 17 00:00:00 2001 From: Jon Kazama Date: Sun, 14 Jun 2026 10:47:17 +0200 Subject: [PATCH] fix(manifest): Quick-Save auf Alt+Shift+S (Strg+Shift+S Brave-Konflikt, Strg+Alt verboten); Firefox laedt quicksave-core via scripts-Array --- manifest.firefox.json | 6 +++--- manifest.json | 4 ++-- manifest.opera.json | 4 ++-- 3 files changed, 7 insertions(+), 7 deletions(-) diff --git a/manifest.firefox.json b/manifest.firefox.json index 9405c7e..c035701 100644 --- a/manifest.firefox.json +++ b/manifest.firefox.json @@ -12,7 +12,7 @@ }, "background": { - "scripts": ["src/js/background.js"] + "scripts": ["src/js/quicksave-core.js", "src/js/background.js"] }, "action": { @@ -22,8 +22,8 @@ "commands": { "quick-save": { "suggested_key": { - "default": "Ctrl+Shift+S", - "mac": "Command+Shift+S" + "default": "Alt+Shift+S", + "mac": "Alt+Shift+S" }, "description": "__MSG_cmdQuickSave__" } diff --git a/manifest.json b/manifest.json index 1f641b4..44ea2ef 100644 --- a/manifest.json +++ b/manifest.json @@ -18,8 +18,8 @@ "commands": { "quick-save": { "suggested_key": { - "default": "Ctrl+Shift+S", - "mac": "Command+Shift+S" + "default": "Alt+Shift+S", + "mac": "Alt+Shift+S" }, "description": "__MSG_cmdQuickSave__" } diff --git a/manifest.opera.json b/manifest.opera.json index 2ac6641..1b4dd10 100644 --- a/manifest.opera.json +++ b/manifest.opera.json @@ -43,8 +43,8 @@ "commands": { "quick-save": { "suggested_key": { - "default": "Ctrl+Shift+S", - "mac": "Command+Shift+S" + "default": "Alt+Shift+S", + "mac": "Alt+Shift+S" }, "description": "__MSG_cmdQuickSave__" }