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.
Compatibility
Section titled “Compatibility”| Firefox | Firefox ESR | Firefox Enterprise |
|---|---|---|
| Available since 60 | Available since 60 | Available since 149 |
CCK2 Equivalent: bookmarks.toolbar,bookmarks.menu
OMA-URI: Bookmarks
Preferences Affected: N/A
Examples
Section titled “Examples”{ "policies": { "Bookmarks": [ { "Title": "Example", "URL": "https://example.com", "Favicon": "https://example.com/favicon.ico", "Placement": "toolbar", "Folder": "FolderName" } ] }}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" ] }}Windows (GPO)
Section titled “Windows (GPO)”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>