Containers
Set policies related to Multi-Account Containers.
Compatibility
Section titled “Compatibility”| Firefox | Firefox ESR | Firefox Enterprise |
|---|---|---|
| Available since 113 | Available since 115 | Available since 149 |
CCK2 Equivalent: N/A
OMA-URI: Containers
Preferences Affected: N/A
Examples
Section titled “Examples”{ "policies": { "Containers": { "Default": [ { "name": "My container", "icon": "pet", "color": "cyan" } ] } }}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" } } }}Values
Section titled “Values”Currently you can set the initial set of containers. For each container, you can specify the name, icon, and color.
| Name | Description |
|---|---|
name | Name of container |
icon | Can be fingerprint, briefcase, dollar, cart, vacation, gift, food, fruit, pet, tree, chill, circle, fence |
color | Can be blue, cyan, green, yellow, orange, red, pink, purple, violet, gray |
Windows (GPO)
Section titled “Windows (GPO)”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>