X-Git-Url: https://git.p6c8.net/policy-templates.git/blobdiff_plain/0d3c4a92d45c1205abb767335275db0293b5fc87..a3b506895bafb0cbb3ca658ab742ed4ac70affdd:/docs/index.md?ds=sidebyside diff --git a/docs/index.md b/docs/index.md index ac725d2..23ce479 100644 --- a/docs/index.md +++ b/docs/index.md @@ -77,6 +77,7 @@ Note: The `policies.json` must use the UTF-8 encoding. | **[`ExtensionUpdate`](#extensionupdate)** | Control extension updates. | **[`FirefoxHome`](#firefoxhome)** | Customize the Firefox Home page. | **[`FirefoxSuggest`](#firefoxsuggest)** | Customize Firefox Suggest. +| **[`GenerativeAI`](#generativeai)** | Configure generative AI features. | **[`GoToIntranetSiteForSingleWordEntryInAddressBar`](#gotointranetsiteforsinglewordentryinaddressbar)** | Force direct intranet site navigation instead of searching when typing single word entries in the address bar. | **[`Handlers`](#handlers)** | Configure default application handlers. | **[`HardwareAcceleration`](#hardwareacceleration)** | Control hardware acceleration. @@ -131,6 +132,7 @@ Note: The `policies.json` must use the UTF-8 encoding. | **[`TranslateEnabled`](#translateenabled)** | Enable or disable webpage translation. | **[`UserMessaging`](#usermessaging)** | Don't show certain messages to the user. | **[`UseSystemPrintDialog`](#usesystemprintdialog)** | Print using the system print dialog instead of print preview. +| **[`VisualSearchEnabled`](#visualsearchenabled)** | Enable or disable visual search. | **[`WebsiteFilter`](#websitefilter)** | Block websites from being visited. | **[`WindowsSSO`](#windowssso)** | Allow Windows single sign-on for Microsoft, work, and school accounts. @@ -3618,6 +3620,70 @@ Value (string): } } ``` +### GenerativeAI + +Configure generative AI features. + +`Chatbot` If false, AI chatbots are not available in the sidebar. + +`LinkPreviews` If false, AI is not used to generate link previews (Firefox 144). + +`TabGroups` If false, AI is not used to suggest names and tabs for tab groups (Firefox 144). + +`Locked` prevents the user from changing generative AI preferences. + +**Compatibility:** Firefox 144, Firefox ESR 140.4\ +**CCK2 Equivalent:** N/A\ +**Preferences Affected:** `browser.ml.chat.enabled`, `browser.ml.linkPreview.optin`, `browser.tabs.groups.smart.userEnabled` + +#### Windows (GPO) +``` +Software\Policies\Mozilla\Firefox\GenerativeAI\Chatbot = 0x1 | 0x0 +Software\Policies\Mozilla\Firefox\GenerativeAI\LinkPreviews = 0x1 | 0x0 +Software\Policies\Mozilla\Firefox\GenerativeAI\TabGroups = 0x1 | 0x0 +Software\Policies\Mozilla\Firefox\GenerativeAI\Locked = 0x1 | 0x0 +``` +#### Windows (Intune) +OMA-URI: +``` +./Device/Vendor/MSFT/Policy/Config/Firefox~Policy~firefox~GenerativeAI/GenerativeAI_Chatbot +./Device/Vendor/MSFT/Policy/Config/Firefox~Policy~firefox~GenerativeAI/GenerativeAI_LinkPreviews +./Device/Vendor/MSFT/Policy/Config/Firefox~Policy~firefox~GenerativeAI/GenerativeAI_TabGroups +./Device/Vendor/MSFT/Policy/Config/Firefox~Policy~firefox~GenerativeAI/GenerativeAI_Locked +``` +Value (string): +``` + or +``` +#### macOS +``` + + GenerativeAI + + Chatbot + | + LinkPreviews + | + TabGroups + | + Locked + | + + +``` +#### policies.json +``` +{ + "policies": { + "GenerativeAI": { + "Chatbot": true | false, + "LinkPreviews": true | false, + "TabGroups": true | false, + "Locked": true | false + } + } +} +``` ### GoToIntranetSiteForSingleWordEntryInAddressBar Whether to always go through the DNS server before sending a single word search string to a search engine. @@ -7148,6 +7214,41 @@ Value (string): } } ``` +### VisualSearchEnabled +Enable or disable visual search. + +**Compatibility:** Firefox 144\ +**CCK2 Equivalent:** N/A\ +**Preferences Affected:** `browser.search.visualSearch.featureGate` + +#### Windows (GPO) +``` +Software\Policies\Mozilla\Firefox\VisualSearchEnabled = 0x1 | 0x0 +``` +#### Windows (Intune) +OMA-URI: +``` +./Device/Vendor/MSFT/Policy/Config/Firefox~Policy~firefox/VisualSearchEnabled +``` +Value (string): +``` + or +``` +#### macOS +``` + + VisualSearchEnabled + | + +``` +#### policies.json +``` +{ + "policies": { + "VisualSearchEnabled": true | false + } +} +``` ### 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. The arrays are limited to 1000 entries each.