From a9218960e964dcb7baf7da68858ebe3129f43dc7 Mon Sep 17 00:00:00 2001 From: Elian Doran Date: Sat, 24 Jan 2026 10:40:16 +0200 Subject: [PATCH] fix(web-clipper): the storage API will not work with a temporary addon ID --- apps/web-clipper/manifest.json | 7 +------ apps/web-clipper/wxt.config.js | 7 ++++++- 2 files changed, 7 insertions(+), 7 deletions(-) diff --git a/apps/web-clipper/manifest.json b/apps/web-clipper/manifest.json index 2a7b80fb41..59a693e370 100644 --- a/apps/web-clipper/manifest.json +++ b/apps/web-clipper/manifest.json @@ -48,10 +48,5 @@ "default": "Ctrl+Shift+E" } } - }, - "browser_specific_settings": { - "gecko": { - "id": "{1410742d-b377-40e7-a9db-63dc9c6ec99c}" - } - } + } } diff --git a/apps/web-clipper/wxt.config.js b/apps/web-clipper/wxt.config.js index 5dd59801a1..f33731423a 100644 --- a/apps/web-clipper/wxt.config.js +++ b/apps/web-clipper/wxt.config.js @@ -10,6 +10,11 @@ export default defineConfig({ "", "storage", "contextMenus" - ] + ], + browser_specific_settings: { + gecko: { + id: "{1410742d-b377-40e7-a9db-63dc9c6ec99c}" + } + } } });