[SM-184] Remove manifest.storage in Firefox since it's not supported (#3390)

This commit is contained in:
Oscar Hinton 2022-08-26 15:54:06 +02:00 committed by GitHub
parent 84bb79dfd0
commit feb6e67bc4
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 0 deletions

View File

@ -60,6 +60,7 @@ function dist(browserName, manifest) {
function distFirefox() {
return dist("firefox", (manifest) => {
delete manifest.content_security_policy;
delete manifest.storage;
removeShortcuts(manifest);
return manifest;
});