Anonymous View
Skip to content

Sync

Controls whether sync should be enabled and which features should be enabled for syncing.

FirefoxFirefox ESRFirefox Enterprise
Not supportedNot supportedAvailable since 150

CCK2 Equivalent: N/A
Preferences Affected: services.sync.engine.addons, services.sync.engine.addresses, services.sync.engine.bookmarks, services.sync.engine.creditcards, services.sync.engine.history, services.sync.engine.passwords, services.sync.engine.prefs, services.sync.engine.tabs

policies.json
{
"policies": {
"Sync": {
"Addons": false,
"Addresses": true,
"Bookmarks": true,
"Enabled": true,
"History": true,
"Locked": true,
"OpenTabs": false,
"Passwords": false,
"PaymentMethods": false,
"Settings": true
}
}
}
policies.json
{
"policies": {
"Sync": {
"Enabled": false
}
}
}
JSON schema
Sync JSON schema
{
"type": "object",
"properties": {
"Enabled": {
"type": "boolean"
},
"Addons": {
"type": "boolean"
},
"Addresses": {
"type": "boolean"
},
"Bookmarks": {
"type": "boolean"
},
"History": {
"type": "boolean"
},
"OpenTabs": {
"type": "boolean"
},
"Passwords": {
"type": "boolean"
},
"PaymentMethods": {
"type": "boolean"
},
"Settings": {
"type": "boolean"
},
"Locked": {
"type": "boolean"
}
}
}
  • Addons: A Boolean. Controls whether syncing addons should be enabled.
  • Addresses: A Boolean. Controls whether syncing addresses should be enabled.
  • Bookmarks: A Boolean. Controls whether syncing bookmarks should be enabled.
  • Enabled: A Boolean. Controls whether sync itself should be enabled.
  • History: A Boolean. Controls whether syncing history should be enabled.
  • OpenTabs: A Boolean. Controls whether syncing open tabs should be enabled.
  • Passwords: A Boolean. Controls whether syncing passwords should be enabled.
  • PaymentMethods: A Boolean. Controls whether syncing payment methods should be enabled.
  • Settings: A Boolean. Controls whether syncing settings should be enabled.
  • Locked: A Boolean. Controls whether the settings are enforced, and whether Enabled applies at all. If Locked is true, the Sync data type settings are locked so users cannot change them, and Enabled connects or disconnects sync. Users can no longer turn sync on or off themselves, whether Enabled is true or false, and only a policy update can change it.
Software\Policies\Mozilla\Firefox\Sync\Addons = 0x1 | 0x0
Software\Policies\Mozilla\Firefox\Sync\Addresses = 0x1 | 0x0
Software\Policies\Mozilla\Firefox\Sync\Bookmarks = 0x1 | 0x0
Software\Policies\Mozilla\Firefox\Sync\Enabled = 0x1 | 0x0
Software\Policies\Mozilla\Firefox\Sync\History = 0x1 | 0x0
Software\Policies\Mozilla\Firefox\Sync\Locked = 0x1 | 0x0
Software\Policies\Mozilla\Firefox\Sync\OpenTabs = 0x1 | 0x0
Software\Policies\Mozilla\Firefox\Sync\Passwords = 0x1 | 0x0
Software\Policies\Mozilla\Firefox\Sync\PaymentMethods = 0x1 | 0x0
Software\Policies\Mozilla\Firefox\Sync\Settings = 0x1 | 0x0
<dict>
<key>Sync</key>
<dict>
<key>Addons</key>
<true/> | <false/>
<key>Addresses</key>
<true/> | <false/>
<key>Bookmarks</key>
<true/> | <false/>
<key>Enabled</key>
<true/> | <false/>
<key>History</key>
<true/> | <false/>
<key>Locked</key>
<true/> | <false/>
<key>OpenTabs</key>
<true/> | <false/>
<key>Passwords</key>
<true/> | <false/>
<key>PaymentMethods</key>
<true/> | <false/>
<key>Settings</key>
<true/> | <false/>
</dict>
</dict>