Skip to content

Instantly share code, notes, and snippets.

@avoidik
Last active October 9, 2024 07:55
Show Gist options
  • Save avoidik/0e5319b71188bdfce12930f13d8a3138 to your computer and use it in GitHub Desktop.
Save avoidik/0e5319b71188bdfce12930f13d8a3138 to your computer and use it in GitHub Desktop.
Firefox policies
{
"policies": {
"DisableTelemetry": true,
"DisableFirefoxStudies": true,
"ManualAppUpdateOnly": true,
"AutofillAddressEnabled": false,
"AutofillCreditCardEnabled": false,
"DisableFormHistory": true,
"NetworkPrediction": false,
"OfferToSaveLogins": false,
"OfferToSaveLoginsDefault": false,
"SearchSuggestEnabled": false,
"DisableBuiltinPDFViewer": true,
"DontCheckDefaultBrowser": true,
"DisablePocket": true,
"SearchBar": "separate",
"UserMessaging": {
"ExtensionRecommendations": false,
"FeatureRecommendations": false,
"UrlbarInterventions": false,
"SkipOnboarding": true,
"MoreFromMozilla": false,
"FirefoxLabs": true,
"Locked": false
}
}
}
@avoidik
Copy link
Author

avoidik commented Aug 9, 2024

@avoidik
Copy link
Author

avoidik commented Sep 23, 2024

MacOS

$ mkdir -p /Applications/Firefox.app/Contents/Resources/distribution
$ curl -fsSL \
  https://gist.githubusercontent.com/avoidik/0e5319b71188bdfce12930f13d8a3138/raw/5ac4541f7cca6e0807045f5642809742d48043a3/policies.json \
  -o /Applications/Firefox.app/Contents/Resources/distribution/policies.json
# ~/.bash_aliases
alias firefox-policies='mkdir -p /Applications/Firefox.app/Contents/Resources/distribution; curl -fsSL https://gist.githubusercontent.com/avoidik/0e5319b71188bdfce12930f13d8a3138/raw/5ac4541f7cca6e0807045f5642809742d48043a3/policies.json -o /Applications/Firefox.app/Contents/Resources/distribution/policies.json'

Linux

# mkdir -p /etc/firefox/policies
# curl -fsSL \
  https://gist.githubusercontent.com/avoidik/0e5319b71188bdfce12930f13d8a3138/raw/5ac4541f7cca6e0807045f5642809742d48043a3/policies.json \
  -o /etc/firefox/policies/policies.json

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment