Skip to content

Containers

Set policies related to Multi-Account Containers.

FirefoxFirefox ESRFirefox Enterprise
Available since 113Available since 115Available since 149

CCK2 Equivalent: N/A
OMA-URI: Containers
Preferences Affected: N/A

policies.json
{
"policies": {
"Containers": {
"Default": [
{
"name": "My container",
"icon": "pet",
"color": "cyan"
}
]
}
}
}
JSON schema
Containers JSON schema
{
"type": "object",
"properties": {
"Default": {
"type": "array",
"contentMediaType": "application/json",
"items": {
"properties": {
"name": {
"type": "string"
},
"icon": {
"type": "string",
"enum": [
"fingerprint",
"briefcase",
"dollar",
"cart",
"vacation",
"gift",
"food",
"fruit",
"pet",
"tree",
"chill",
"circle",
"fence"
]
},
"color": {
"type": "string",
"enum": [
"blue",
"cyan",
"green",
"yellow",
"orange",
"red",
"pink",
"purple",
"violet",
"gray"
]
}
},
"type": "object"
}
}
}
}

Currently you can set the initial set of containers. For each container, you can specify the name, icon, and color.

NameDescription
nameName of container
iconCan be fingerprint, briefcase, dollar, cart, vacation, gift, food, fruit, pet, tree, chill, circle, fence
colorCan be blue, cyan, green, yellow, orange, red, pink, purple, violet, gray

Software\Policies\Mozilla\Firefox\Containers (REG_MULTI_SZ) =

{
"Default": [
{
"name": "My container",
"icon": "pet",
"color": "cyan"
}
]
}
<dict>
<key>Default</key>
<dict>
<key>Containers</key>
<array>
<dict>
<key>name</key>
<string>My container</string>
<key>icon</key>
<string>pet</string>
<key>color</key>
<string>cyan</string>
</dict>
</array>
</dict>
</dict>