Last active
August 12, 2025 11:59
-
-
Save avoidik/0e5319b71188bdfce12930f13d8a3138 to your computer and use it in GitHub Desktop.
Firefox policies
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"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 | |
} | |
} | |
} |
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
Windows - create a distribution
directory and put policies.json
file in there.
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
https://mozilla.github.io/policy-templates/