Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 14 additions & 4 deletions src/content/docs/reference/policies/ManagedBookmarks.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ Configures a list of bookmarks managed by an administrator that cannot be change

The bookmarks are only added as a button on the personal toolbar. They are not in the bookmarks folder.

The syntax of this policy is exactly the same as the [Chrome ManagedBookmarks policy](https://cloud.google.com/docs/chrome-enterprise/policies/?policy=ManagedBookmarks).
The syntax of this policy is based on the [Chrome ManagedBookmarks policy](https://cloud.google.com/docs/chrome-enterprise/policies/?policy=ManagedBookmarks), with the addition of the Firefox-specific `favicon` property.
The schema is:

```json
Expand All @@ -22,6 +22,9 @@ The schema is:
},
"type": "array"
},
"favicon": {
"type": "string"
},
"name": {
"type": "string"
},
Expand All @@ -38,6 +41,8 @@ The schema is:
}
```

A `favicon` can be specified for each bookmark. The value must be a `data:`, `http:`, or `https:` URL. (Added in Firefox 152)

**Compatibility:** Firefox 83, Firefox ESR 78.5\
**CCK2 Equivalent:** N/A\
**Preferences Affected:** N/A
Expand All @@ -53,7 +58,8 @@ Software\Policies\Mozilla\Firefox\ManagedBookmarks (REG_MULTI_SZ) =
},
{
"url": "example.com",
"name": "Example"
"name": "Example",
"favicon": "https://example.com/favicon.ico"
},
{
"name": "Mozilla links",
Expand Down Expand Up @@ -90,7 +96,8 @@ Value (string):
},
{
"url": "example.com",
"name": "Example"
"name": "Example",
"favicon": "https://example.com/favicon.ico"
},
{
"name": "Mozilla links",
Expand Down Expand Up @@ -138,6 +145,8 @@ Value (string):
<string>example.com</string>
<key>name</key>
<string>Example</string>
<key>favicon</key>
<string>https://example.com/favicon.ico</string>
</dict>
<dict>
<key>name</key>
Expand Down Expand Up @@ -173,7 +182,8 @@ Value (string):
},
{
"url": "example.com",
"name": "Example"
"name": "Example",
"favicon": "https://example.com/favicon.ico"
},
{
"name": "Mozilla links",
Expand Down