From: Michael Kaply <345868+mkaply@users.noreply.github.com> Date: Wed, 3 Jul 2019 20:33:38 +0000 (-0500) Subject: Update documentation X-Git-Tag: v1.8.1~3^2~2 X-Git-Url: https://git.p6c8.net/policy-templates.git/commitdiff_plain/90ea00e978794deb3249c488b19e0837302c38f9?ds=sidebyside;hp=-c Update documentation --- 90ea00e978794deb3249c488b19e0837302c38f9 diff --git a/README.md b/README.md index 9316b24..e60fbe9 100644 --- a/README.md +++ b/README.md @@ -65,9 +65,9 @@ Policies can be specified using the Group Policy templates on Windows (https://g | **[`SecurityDevices`](#securitydevices)** | Install PKCS #11 modules. | **[`SSLVersionMax`](#sslversionmax)** | Set and lock the maximum version of TLS. | **[`SSLVersionMin`](#sslversionmin)** | Set and lock the minimum version of TLS. +| **[`SupportMenu`](#supportmenu)** | Add a menuitem to the help menu for specifying support information. | **[`WebsiteFilter`](#websitefilter)** | Block websites from being visited. - ### AppUpdateURL Change the URL for application update. @@ -2217,6 +2217,45 @@ Software\Policies\Mozilla\Firefox\SSLVersionMin = "tls1" | "tls1.1" | "tls1.2" | } } ``` +### SupportMenu +Add a menuitem to the help menu for specifying support information. + +**Compatibility:** Firefox 68, Firefox ESR 68\ +**CCK2 Equivalent:** helpMenu\ +**Preferences Affected:** N/A + +#### Windows +``` +Software\Policies\Mozilla\Firefox\SupportMenu\Title = "Support Menu" +Software\Policies\Mozilla\Firefox\SupportMenu\URL = "http://example.com/support" +Software\Policies\Mozilla\Firefox\SupportMenu\Title = "S" +``` +#### macOS +``` + + SupportMenu + + Title + SupportMenu + URL + http://example.com/support + AccessKey + S + + +``` +### JSON +``` +{ + "policies": { + "SupportMenu": { + "Title": "Support Menu", + "URL": "http://example.com/support", + "AccessKey": "S" + } + } +} +``` ### WebsiteFilter Block websites from being visited. The parameters take an array of Match Patterns, as documented in https://developer.mozilla.org/en-US/Add-ons/WebExtensions/Match_patterns. Only http/https addresses are supported at the moment. The arrays are limited to 1000 entries each. @@ -2257,16 +2296,3 @@ Software\Policies\Mozilla\Firefox\WebsiteFilters\Exceptions\1 = "http://example. } } ``` -### SupportMenu -This policy adds a menuitem to the help menu for specifying support information. -``` -{ - "policies": { - "SupportMenu": { - "Title": "Click here for help", /* Title of the menu */ - "URL": "http://example.edu/", /* Destination URL */ - "AccessKey": "C" /* Shortcut key */ - } - } -} -```