"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
}
}
```
}
}
```
-### InstallAddons
+### InstallAddonsPermission
This policy sets domains that can install extensions, as well as the default behavior.
```
{
"policies": {
- "InstallAddons": {
+ "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 */