Skip to content

SupportMenu

Add a menuitem to the help menu for specifying support information.

The item is added to the bottom of the Help menu, below a separator, so your own support contact sits alongside the built-in Firefox help entries. Selecting it opens the URL you specify in a new tab.

FirefoxFirefox ESRFirefox Enterprise
Available since 67Available since 60.7.0Available since 149

CCK2 Equivalent: helpMenu
OMA-URI: SupportMenu
Preferences Affected: N/A

policies.json
{
"policies": {
"SupportMenu": {
"Title": "Support Menu",
"URL": "http://example.com/support"
}
}
}
JSON schema
SupportMenu JSON schema
{
"type": "object",
"properties": {
"Title": {
"type": "string"
},
"URL": {
"type": "string",
"format": "uri"
},
"AccessKey": {
"type": "string"
}
},
"required": [
"Title",
"URL"
]
}
  • Title: a string label shown in the Help menu.
  • URL: a string with the URL that opens when the item is selected.
  • AccessKey (optional): a single character used as the keyboard shortcut for the item within the menu.
Software\Policies\Mozilla\Firefox\SupportMenu\Title = "Support Menu"
Software\Policies\Mozilla\Firefox\SupportMenu\URL = "http://example.com/support"
Software\Policies\Mozilla\Firefox\SupportMenu\AccessKey = "S"
<dict>
<key>SupportMenu</key>
<dict>
<key>Title</key>
<string>SupportMenu</string>
<key>URL</key>
<string>http://example.com/support</string>
<key>AccessKey</key>
<string>S</string>
</dict>
</dict>