Skip to content

Bookmarks

Add bookmarks in either the bookmarks toolbar or menu. Only Title and URL are required. If Placement is not specified, the bookmark will be placed on the toolbar. If Folder is specified, it is automatically created and bookmarks with the same folder name are grouped together.

If you want to clear all bookmarks set with this policy, you can set the value to an empty array ([]). This can be on Windows via the new Bookmarks (JSON) policy available with GPO and Intune.

FirefoxFirefox ESRFirefox Enterprise
Available since 60Available since 60Available since 149

CCK2 Equivalent: bookmarks.toolbar,bookmarks.menu
OMA-URI: Bookmarks
Preferences Affected: N/A

policies.json
{
"policies": {
"Bookmarks": [
{
"Title": "Example",
"URL": "https://example.com",
"Favicon": "https://example.com/favicon.ico",
"Placement": "toolbar",
"Folder": "FolderName"
}
]
}
}
JSON schema
Bookmarks JSON schema
{
"type": "array",
"items": {
"type": "object",
"properties": {
"Title": {
"type": "string"
},
"URL": {
"type": "string",
"format": "uri"
},
"Favicon": {
"type": "string",
"anyOf": [
{
"format": "uri"
},
{
"maxLength": 0
}
]
},
"Placement": {
"type": "string",
"enum": [
"toolbar",
"menu"
]
},
"Folder": {
"type": "string"
}
},
"required": [
"Title",
"URL"
]
}
}
Software\Policies\Mozilla\Firefox\Bookmarks\1\Title = "Example"
Software\Policies\Mozilla\Firefox\Bookmarks\1\URL = "https://example.com"
Software\Policies\Mozilla\Firefox\Bookmarks\1\Favicon = "https://example.com/favicon.ico"
Software\Policies\Mozilla\Firefox\Bookmarks\1\Placement = "toolbar" | "menu"
Software\Policies\Mozilla\Firefox\Bookmarks\1\Folder = "FolderName"
Software\Policies\Mozilla\Firefox\Bookmarks (REG_MULTI_SZ) =
[]
<dict>
<key>Bookmarks</key>
<array>
<dict>
<key>Title</key>
<string>Example</string>
<key>URL</key>
<string>https://example.com</string>
<key>Favicon</key>
<string>https://example.com/favicon.ico</string>
<key>Placement</key>
<string>toolbar | menu</string>
<key>Folder</key>
<string>FolderName</string>
</dict>
</array>
</dict>