Dark Reader: Disable featured site settings.

This commit is contained in:
Dmitry Voronin 2024-11-08 05:22:44 +03:00
parent 0c58d1f5c5
commit 40969c26f9
Signed by: voronind
SSH key fingerprint: SHA256:3kBb4iV2ahufEBNq+vFbUe4QYfHt98DHQjN7QaptY9k

View file

@ -214,7 +214,9 @@ in
Cryptomining = true; Cryptomining = true;
Fingerprinting = true; Fingerprinting = true;
EmailTracking = true; EmailTracking = true;
Exceptions = [ "https://example.com" ]; Exceptions = [
"https://example.com"
];
}; };
EncryptedMediaExtensions = { EncryptedMediaExtensions = {
Enabled = true; Enabled = true;
@ -270,39 +272,41 @@ in
changeBrowserTheme = false; changeBrowserTheme = false;
detectDarkTheme = false; detectDarkTheme = false;
enableContextMenus = false; enableContextMenus = false;
enableForPDF = true; enableForPDF = false;
enableForProtectedPages = false; enableForProtectedPages = false;
fetchNews = false; fetchNews = false;
previewNewDesign = true; previewNewDesign = true;
syncSettings = true; syncSettings = true;
syncSitesFixes = true; syncSitesFixes = false;
disabledFor = [ "home.voronind.com" ]; disabledFor = [
"home.voronind.com"
];
theme = { theme = {
mode = 1;
brightness = 100; brightness = 100;
contrast = 100; contrast = 100;
grayscale = 0; darkColorScheme = "Default";
sepia = 0;
useFont = false;
fontFamily = config.module.style.font.sansSerif.name;
textStroke = 0;
engine = "dynamicTheme"; # dynamicTheme, cssFilter or svgFilter.
stylesheet = "";
darkSchemeBackgroundColor = "#${config.module.style.color.bg.dark}"; darkSchemeBackgroundColor = "#${config.module.style.color.bg.dark}";
darkSchemeTextColor = "#${config.module.style.color.fg.light}"; darkSchemeTextColor = "#${config.module.style.color.fg.light}";
engine = "dynamicTheme"; # dynamicTheme, cssFilter or svgFilter.
fontFamily = config.module.style.font.sansSerif.name;
grayscale = 0;
immediateModify = true;
lightColorScheme = "Default";
lightSchemeBackgroundColor = "#${config.module.style.color.bg.light}"; lightSchemeBackgroundColor = "#${config.module.style.color.bg.light}";
lightSchemeTextColor = "#${config.module.style.color.fg.dark}"; lightSchemeTextColor = "#${config.module.style.color.fg.dark}";
mode = 1;
scrollbarColor = "#${config.module.style.color.neutral}"; scrollbarColor = "#${config.module.style.color.neutral}";
selectionColor = "#${config.module.style.color.selection}"; selectionColor = "#${config.module.style.color.selection}";
sepia = 0;
styleSystemControls = true; styleSystemControls = true;
lightColorScheme = "Default"; stylesheet = "";
darkColorScheme = "Default"; textStroke = 0;
immediateModify = true; useFont = false;
}; };
automation = { automation = {
enabled = false; enabled = false;
mode = "";
behavior = "OnOff"; behavior = "OnOff";
mode = "";
}; };
time = { time = {
activation = "18:00"; activation = "18:00";
@ -327,19 +331,19 @@ in
]; ];
}; };
FirefoxHome = { FirefoxHome = {
Search = false;
TopSites = false;
SponsoredTopSites = false;
Highlights = false; Highlights = false;
Pocket = false;
Snippets = false;
Locked = true; Locked = true;
Pocket = false;
Search = false;
Snippets = false;
SponsoredTopSites = false;
TopSites = false;
}; };
FirefoxSuggest = { FirefoxSuggest = {
WebSuggestions = false;
SponsoredSuggestions = false;
ImproveSuggest = false; ImproveSuggest = false;
Locked = true; Locked = true;
SponsoredSuggestions = false;
WebSuggestions = false;
}; };
PDFjs = { PDFjs = {
Enabled = false; Enabled = false;
@ -396,19 +400,19 @@ in
Downloads = false; Downloads = false;
FormData = true; FormData = true;
History = false; History = false;
Locked = true;
OfflineApps = true;
Sessions = false; Sessions = false;
SiteSettings = false; SiteSettings = false;
OfflineApps = true;
Locked = true;
}; };
UserMessaging = { UserMessaging = {
ExtensionRecommendations = false; ExtensionRecommendations = false;
FeatureRecommendations = false; FeatureRecommendations = false;
Locked = true;
MoreFromMozilla = false; MoreFromMozilla = false;
SkipOnboarding = true; SkipOnboarding = true;
UrlbarInterventions = false; UrlbarInterventions = false;
WhatsNew = false; WhatsNew = false;
Locked = true;
}; };
}; };
} }