Skip to content

Commit

Permalink
More configuration for Firefox as suggested by Greg
Browse files Browse the repository at this point in the history
  • Loading branch information
soulgalore committed Nov 22, 2024
1 parent b64fdbc commit 1b90f5d
Showing 1 changed file with 8 additions and 2 deletions.
10 changes: 8 additions & 2 deletions lib/firefox/settings/firefoxPreferences.js
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ export const defaultFirefoxPreferences = {
'security.turn_off_all_security_so_that_viruses_can_take_over_this_computer': true,
'xpinstall.signatures.required': false,
// Prevent Remote Settings to issue non local connections.
'services.settings.server': 'http://localhost/remote-settings-dummy/v1',
'services.settings.server': 'data:,#remote-settings-dummy/v1',
// Ensure autoplay is enabled for all platforms.
'media.autoplay.default': 0, // 0=Allowed, 1=Blocked, 2=Prompt
'media.autoplay.enabled.user-gestures-needed': true,
Expand Down Expand Up @@ -198,5 +198,11 @@ export const defaultFirefoxPreferences = {
'browser.newtabpage.activity-stream.showSponsoredTopSites': false,
// See https://bugzilla.mozilla.org/show_bug.cgi?id=1930110
// See https://github.com/sitespeedio/browsertime/issues/2211
'browser.search.serpEventTelemetryCategorization.enabled': false
'browser.search.serpEventTelemetryCategorization.enabled': false,
// Default Glean to "record but don't report" mode, and to never trigger
// activity-based ping submission. Docs:
// https://firefox-source-docs.mozilla.org/toolkit/components/glean/dev/preferences.html
'telemetry.fog.test.localhost_port': -1,
'telemetry.fog.test.activity_limit': -1,
'telemetry.fog.test.inactivity_limit': -1
};

0 comments on commit 1b90f5d

Please sign in to comment.