-Mozilla recommends that you do not disable telemetry. Information collected through telemetry helps us build a better product for businesses like yours.
-```
-{
- "policies": {
- "DisableTelemetry": true
- }
-}
-```
-### DisplayBookmarksToolbar
-This policy turns on the bookmarks toolbar by default. A user can still turn it off and it will stay off.
-```
-{
- "policies": {
- "DisplayBookmarksToolbar": true
- }
-}
-```
-### DisplayMenuBar
-This policy turns on the menubar by default. A user can still turn it off and it will stay off.
-```
-{
- "policies": {
- "DisplayMenuBar": true
- }
-}
-```
-### DontCheckDefaultBrowser
-This policy stops Firefox from checking if it is the default browser at startup.
-```
-{
- "policies": {
- "DontCheckDefaultBrowser": true
- }
-}
-```
-### EnableTrackingProtection
-This policy affects tracking protection.
-
-If this policy is not configured, tracking protection is not enabled by default in the browser but it is enabled by default in private browsing and the user can change it.
-
-If Value is set to false, tracking protection is disabled and locked in both the browser and private browsing.
-
-If Value is set to true, private browsing is enabled by default in both the browser and private browsing and you can choose set the Locked value if you want to prevent the user from changing it.
-```
-{
- "policies": {
- "EnableTrackingProtection": {
- "Value": [true, false],
- "Locked": [true, false]
- }
-```
-### Extensions
-This policy controls the install, uninstall and locking of extensions. Locked extensions cannot be disabled or uninstalled.
-For Install, you can specify a list of URLs or paths.
-For Uninstall and Locked, you specify extension IDs.
-```
-{
- "policies": {
- "Extensions": {
- "Install": ["https://addons.mozilla.org/firefox/downloads/somefile.xpi", "//path/to/xpi"]
- "Uninstall": ["addon_id@mozilla.org"],
- "Locked": ["addon_id@mozilla.org"]
- }
-```
-### NoDefaultBookmarks
-Don't create the default bookmarks or the Smart Bookmarks (Most Visited, Recent Tags). Note: this policy is only effective if used before the first run of the profile.
-```
-{
- "policies": {
- "NoDefaultBookmarks": true
- }
-}
-```
-### OfferToSaveLogins
-This policy sets the signon.rememberSignons preference. It determines whether or not Firefox offers to save passwords. It can either be enabled or disabled.
-```
-{
- "policies": {
- "OfferToSaveLogins": true
- }
-}
-```
-### Homepage
-This policy sets the default homepage value. It can also be used to lock the homepage and add additional homepages.
-```
-{
- "policies": {
- "Homepage": {
- "URL": "http://example.com/",
- "Locked": true,
- "Additional": ["http://example.org/",
- "http://example.edu/"]
- }
- }
-}
-```
-### PopupBlocking
-This policy sets domains for which pop-up windows are allowed. It also set the default pop-up policy
-```
-{
- "policies": {
- "PopupBlocking": {
- "Allow": ["http://example.org/",
- "http://example.edu/"],
- "Default": [true|false], /* If this is set to false, pop-up window are enabled by default. */
- "Locked": [true|false]
- }
- }
-}
-```
-### InstallAddonsPermission
-This policy sets domains that can install extensions, as well as the default behavior.
-```
-{
- "policies": {
- "InstallAddonsPermission": {
- "Allow": ["http://example.org/",
- "http://example.edu/"]
- "Default": [true|false], /* If this is set to false, add-ons cannot be installed by the user */
- }
- }
-}
-```
-### FlashPlugin
-This policy sets the behavior of Flash on the specified domains, as well as the default behavior.
-```
-{
- "policies": {
- "FlashPlugin": {
- "Allow": ["http://example.org/"], /* Sites on the allow list do not override Flash being completely disabled */
- "Block": ["http://example.edu/"],
- "Default": [true|false], /* If this is set to true, flash is always enabled. If it is set to false, Flash is never enabled */
- "Locked": [true|false]
- }
- }
-}
-```
-### OverrideFirstRunPage
-This policy allowed you to override the first run page. If you leave the URL blank, the first run page will not be displayed.
-```
-{
- "policies": {
- "OverrideFirstRunPage": "http://example.org"
- }
-}
-```
-### OverridePostUpdatePage
-This policy allowed you to override the upgrade page page. If you leave the URL blank, the upgrade page will not be displayed.
-```
-{
- "policies": {
- "OverridePostUpdatePage": "http://example.org"
- }
-}
-```
-### Bookmarks
-This policy allows you to specify bookmarks. You can have any number of bookmarks although only ten are specified in the ADMX file.
-Placement can be specified as either toolbar or menu. If a folder is specified, it is automatically created and bookmarks with the
-same folder name are grouped together.
-
-```
-{
- "policies": {
- "Bookmarks": [
- {
- "Title": "Example",
- "URL": "http://example.org",
- "Favicon": "http://example.com/favicon.ico",
- "Placement": ["toolbar", "menu"],
- "Folder": "FolderName"
- }
- ]
- }
-}
-```
-### Proxy
-This policy allows you to specify proxy settings. These settings correspond to the connection settings in Firefox preferences.
-To specify ports, append them to the hostnames with a colon (:). If Locked is set to true, the values can't be changed by the user.
-```
-{
- "Proxy": {
- "Mode": ["none", "system", "manual", "autoDetect", "autoConfig"]
- "Locked": [true, false]
- "HTTPProxy": "hostname",
- "UseHTTPProxyForAllProtocols": [true, false]
- "SSLProxy": "hostname",
- "FTPProxy": "hostname",
- "SOCKSProxy": "hostname",
- "SOCKSVersion": [4, 5],
- "Passthrough": "List of passthrough addresses/domains",
- "AutoConfigURL": "URL_TO_AUTOCONFIG",
- "AutoLogin": [true, false],
- "UseProxyForDNS": [true, false]
- }
-}
-```
-### SanitizeOnShutdown
-If this policy is set to true, all data is cleared when Firefox is closed. This includes Browsing & Download History, Cookies, Active Logins, Cache, Form & Search History, Site Preferences and Offline Website Data.
-```
-{
- "policies": {
- "SanitizeOnShutdown": [true|false]
- }
-}
-```
-### SearchBar
-This policy can be used to determine if the search bar is separate or combined with the URL bar.
-```
-{
- "policies": {
- "SearchBar": ["unified", "separate"]
- }
-}
-```
-### WebsiteFilter
-Blocks websites from being visited. The parameters take an array of Match Patterns, as documented in https://developer.mozilla.org/en-US/Add-ons/WebExtensions/Match_patterns. Only http/https accesses are supported at the moment. The arrays are limited to 1000 entries each.
-```
-{
- "policies": {
- "Block": ["<all_urls>"],
- "Exceptions": ["http://example.org/*"]
- }
-}
-```
-### Search Engines
-This policy allows you to add new search engines, as well as set the default and prevent the install of search engines from web pages. Only Name and URLTemplate is required.
-```
-{
- "policies": {
- "SearchEngines": {
- "Add": [
- {
- "Name": "",
- "URLTemplate": "URL including {searchTerms} to substitute for the terms",
- "Method": ["GET", "POST"],
- "IconURL": "URL to icon",
- "Alias": "Alias that can be used to access the engine",
- "Description": "Description",
- "SuggestURLTemplate": "URL for suggestions using {searchTerms}"
- }
- ],
- "Default": "Name of engine",
- "PreventInstalls": [true|false]
- }
- }
-}
-```