Has anyone prepared complete Firefox (/ESR) Customisation like CCK2 do with 'policies.json' ?
https://support.mozilla.org/en-US/kb/customizing-firefox-using-policiesjson
While I am working on this, I referred below URL and found many customisations:
https://github.com/mozilla/policy-templates/blob/master/README.md
Policy Schema: Important Help
https://dxr.mozilla.org/mozilla-central/source/browser/components/enterprisepolicies/schemas/policies-schema.json
Though getting the Network and Proxy configuration, creates confusion here.
https://developer.mozilla.org/en-US/docs/Mozilla/Integrated_authentication
I also need help with Certificate import with this method, we have some custom certificates to be imported.
Sample of policies.json file I am working on:
{
"policies":
{
"BlockAboutConfig": false,
"BlockAboutProfiles": true,
"DisableAppUpdate": true,
"OverridePostUpdatePage": true,
"DisableFirefoxAccounts": true,
"DisablePrivateBrowsing": true,
"DisableMasterPasswordCreation": true,
"OfferToSaveLogins": false,
"DontCheckDefaultBrowser": true,
"DisableTelemetry": true,
"DisableFeedbackCommands": true,
}
}