From 28cfcf7ddc209b09c9902d288a2b803e22325f60 Mon Sep 17 00:00:00 2001 From: Ajay Date: Wed, 2 Apr 2025 15:40:08 -0400 Subject: [PATCH] Remove optional permissions in safari for now due to safari bug https://bugs.webkit.org/show_bug.cgi?id=290508 Forgot to commit it in the last build --- webpack/webpack.manifest.js | 1 + 1 file changed, 1 insertion(+) diff --git a/webpack/webpack.manifest.js b/webpack/webpack.manifest.js index a7a5ffcb..1666c8a1 100644 --- a/webpack/webpack.manifest.js +++ b/webpack/webpack.manifest.js @@ -51,6 +51,7 @@ class BuildManifest { } else if (this.options.browser.toLowerCase() === "safari") { mergeObjects(manifest, manifestV2ManifestExtra); mergeObjects(manifest, safariManifestExtra); + manifest.optional_permissions = manifest.optional_permissions.filter((a) => a !== "*://*/*"); } if (this.options.stream === "beta") {