Firefox: Apply global extension force setting to declarative extensions (#6567)

Respect the parent force option for the extension settings storage.js
This commit is contained in:
HPsaucii
2025-03-04 02:44:45 +00:00
committed by GitHub
parent fcac3d6d88
commit 70fbbf05a5

View File

@@ -911,7 +911,7 @@ in {
(name: settingConfig: {
"${profilesPath}/${profile.path}/browser-extension-data/${name}/storage.js" =
{
force = settingConfig.force;
force = settingConfig.force || profile.extensions.force;
text = generators.toJSON { } settingConfig.settings;
};
}) profile.extensions.settings)))));