"BlockAboutSupport": true
}
```
-### BlockSetDesktopBackground
+### DisableSetDesktopBackground
This policy removes the "Set As Desktop Background..." menuitem when right clicking on an image.
```
{
"policies": {
- "BlockAboutSupport": true
+ "DisableSetDesktopBackground": true
}
}
```
"Allow": ["http://example.org/"], /* Domains where cookies are always allowed */
"Block": ["http://example.edu/"], /* Domains where cookies are always blocked */
"Default": [true|false], /* This sets the default value for "Accept cookies from websites" */
- "AcceptThirdParty": ["all", "none", "from-visited"], /* This sets the default value for "Accept third-party cookies" */
+ "AcceptThirdParty": ["always", "never", "from-visited"], /* This sets the default value for "Accept third-party cookies" */
"ExpireAtSessionEnd": [true|false], /* This determines when cookies expire */
"Locked": [true|false] /* If this is true, cookies preferences can't be changed */
}
}
}
```
-### CreateMasterPassword
-This policy removes the master password functionality.
+### DisableMasterPasswordCreation
+This policy removes the master password functionality if set to true.
```
{
"policies": {
- "CreateMasterPassword": false
+ "DisableMasterPasswordCreation": [true|false]
}
}
```
}
}
```
-### DisableSysAddonUpdate
+### DisableSystemAddonUpdate
This policy prevents system add-ons from being updated or installed.
```
{
"policies": {
- "DisableSysAddonUpdate": true
+ "DisableSystemAddonUpdate": true
}
}
```
}
}
```
-### RememberPasswords
-This policy sets the signon.rememberSignons preference. It can either be enabled or disabled.
+### 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": {
- "RememberPasswords": true
+ "OfferToSaveLogins": true
}
}
```
}
}
```
-### Popups
-This policy sets domains for which popups are allowed
+### PopupBlocking
+This policy sets domains for which pop-up windows are allowed. It also set the default pop-up policy
```
{
"policies": {
- "Popups": {
+ "PopupBlocking": {
"Allow": ["http://example.org/",
- "http://example.edu/"]
+ "http://example.edu/"],
+ "Default": [true|false], /* If this is set to false, pop-up window are enabled by default. */
+ "Locked": [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"]
+ }
+}
+```