From: Michael Kaply <345868+mkaply@users.noreply.github.com>
Date: Mon, 6 Apr 2020 20:30:33 +0000 (-0500)
Subject: Merge pull request #565 from mozilla/DisableDefaultBrowserAgent
X-Git-Tag: v1.15~10
X-Git-Url: https://git.p6c8.net/policy-templates.git/commitdiff_plain/269ce4f833b3767afe14cb78bd11d3db6c2a7c19?hp=-c
Merge pull request #565 from mozilla/DisableDefaultBrowserAgent
Add support for DisableDefaultBrowserAgent
---
269ce4f833b3767afe14cb78bd11d3db6c2a7c19
diff --combined README.md
index e2c1619,e493353..df2ccf4
--- a/README.md
+++ b/README.md
@@@ -6,7 -6,6 +6,7 @@@ Policies can be specified using the Gro
| Policy Name | Description
| --- | --- |
+| **[`AppAutoUpdate`](#AppAutoUpdate)** | Enable or disable automatic application update.
| **[`AppUpdateURL`](#AppUpdateURL)** | Change the URL for application update.
| **[`Authentication`](#Authentication)** | Configure sites that support integrated authentication.
| **[`BlockAboutAddons`](#blockaboutaddons)** | Block access to the Add-ons Manager (about:addons).
@@@ -23,6 -22,7 +23,7 @@@
| **[`DisableMasterPasswordCreation`](#disablemasterpasswordcreation)** | Remove the master password functionality.
| **[`DisableAppUpdate`](#disableappupdate)** | Turn off application updates.
| **[`DisableBuiltinPDFViewer`](#disablebuiltinpdfviewer)** | Disable the built in PDF viewer.
+ | **[`DisableDefaultBrowserAgent`](#disabledefaultbrowseragent)** | Prevent the default browser agent from taking any actions (Windows only).
| **[`DisableDeveloperTools`](#disabledevelopertools)** | Remove access to all developer tools.
| **[`DisableFeedbackCommands`](#disablefeedbackcommands)** | Disable the menus for reporting sites.
| **[`DisableFirefoxScreenshots`](#disablefirefoxscreenshots)** | Remove access to Firefox Screenshots.
@@@ -32,7 -32,6 +33,7 @@@
| **[`DisableFormHistory`](#disableformhistory)** | Turn off saving information on web forms and the search bar.
| **[`DisablePocket`](#disablepocket)** | Remove Pocket in the Firefox UI.
| **[`DisablePrivateBrowsing`](#disableprivatebrowsing)** | Remove access to private browsing.
+| **[`DisablePasswordReveal`](#disablepasswordreveal)** | Do not allow passwords to be revealed in saved logins.
| **[`DisableProfileImport`](#disableprofileimport)** | Disables the "Import data from another browser" option in the bookmarks window.
| **[`DisableProfileRefresh`](#disableprofilerefresh)** | Disable the Refresh Firefox button on about:support and support.mozilla.org
| **[`DisableSafeMode`](#disablesafemode)** | Disable safe mode within the browser.
@@@ -85,42 -84,8 +86,42 @@@
| **[`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.
+| **[`UserMessaging`](#usermessaging)** | Don't show certain messages to the user.
| **[`WebsiteFilter`](#websitefilter)** | Block websites from being visited.
+### AppAutoUpdate
+
+Enable or disable **automatic** application update.
+
+If set to true, application updates are installed without user approval.
+
+If set to false, application updates are downloaded but the user can choose when to install the update.
+
+If you have disabled updates via DisableAppUpdate, this policy has no effect.
+
+**Compatibility:** Firefox 75, Firefox ESR 68.7\
+**CCK2 Equivalent:** N/A\
+**Preferences Affected:** app.update.auto
+
+#### Windows (GPO)
+```
+Software\Policies\Mozilla\Firefox\AppAutoUpdate = 0x1 | 0x0
+```
+#### macOS
+```
+
+ AppAutoUpdate
+ |
+
+```
+#### policies.json
+```
+{
+ "policies": {
+ "AppAutoUpdate": true | false
+ }
+}
+```
### AppUpdateURL
Change the URL for application update.
@@@ -689,6 -654,26 +690,26 @@@ Software\Policies\Mozilla\Firefox\Disab
}
}
```
+ ### DisableDefaultBrowserAgent
+ Prevent the default browser agent from taking any actions. Only applicable to Windows; other platforms donât have the agent.
+
+ **Compatibility:** Firefox 75, Firefox ESR 68.7 (Windows only)\
+ **CCK2 Equivalent:** N/A\
+ **Preferences Affected:** N/A
+
+ #### Windows (GPO)
+ ```
+ Software\Policies\Mozilla\Firefox\DisableDefaultBrowserAgent = 0x1 | 0x0
+ ```
+
+ #### policies.json
+ ```
+ {
+ "policies": {
+ "DisableDefaultBrowserAgent": true | false
+ }
+ }
+ ```
### DisableDeveloperTools
Remove access to all developer tools.
@@@ -2292,7 -2277,7 +2313,7 @@@ Set and lock certain preferences
| --- | --- | --- | ---
| accessibility.force_disabled | integer | Firefox 70, Firefox ESR 68.2 | 0
| If set to 1, platform accessibility is disabled.
-| app.update.auto | boolean | Firefox 68, Firefox ESR 68 | true
+| app.update.auto (Deprecated - Switch to AppAutoUpdate policy) | boolean | Firefox 68, Firefox ESR 68 | true
| If false, Firefox doesn't automatically install update.
| browser.bookmarks.autoExportHTML | boolean | Firefox 70, Firefox ESR 68.2 | false
| If true, bookmarks are exported on shutdown.
@@@ -3056,58 -3041,6 +3077,58 @@@ Software\Policies\Mozilla\Firefox\Suppo
}
}
```
+### UserMessaging
+
+Prevent installing search engines from webpages.
+
+`WhatsNew` Remove the "What's New" icon and menuitem. (Firefox 75 only)
+
+`ExtensionRecommendations` Don't recommend extensions.
+
+`FeatureRecommendations` Don't recommend browser features.
+
+`UrlbarInterventions` Don't offer Firefox specific suggestions in the URL bar. (Firefox 75 only)
+
+**Compatibility:** Firefox 75, Firefox ESR 68.7\
+**CCK2 Equivalent:** N/A\
+**Preferences Affected:** `browser.messaging-system.whatsNewPanel.enabled`,`browser.newtabpage.activity-stream.asrouter.userprefs.cfr.addons`,`browser.newtabpage.activity-stream.asrouter.userprefs.cfr.features`
+
+#### Windows (GPO)
+```
+Software\Policies\Mozilla\Firefox\UserMessaging\WhatsNew = 0x1 | 0x0
+Software\Policies\Mozilla\Firefox\UserMessaging\ExtensionRecommendations = 0x1 | 0x0
+Software\Policies\Mozilla\Firefox\UserMessaging\FeatureRecommendations = 0x1 | 0x0
+Software\Policies\Mozilla\Firefox\UserMessaging\UrlbarInterventions = 0x1 | 0x0
+```
+#### macOS
+```
+
+ UserMessaging
+
+ WhatsNew
+ |
+ ExtensionRecommendations
+ |
+ FeatureRecommendations
+ |
+ UrlbarInterventions
+ |
+
+
+```
+#### policies.json
+```
+{
+ "policies": {
+ "UserMessaging": {
+ "WhatsNew": true | false,
+ "ExtensionRecommendations": true | false,
+ "FeatureRecommendations": true | false,
+ "UrlbarInterventions": 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. Only http/https addresses are supported at the moment. The arrays are limited to 1000 entries each.
@@@ -3117,8 -3050,8 +3138,8 @@@
#### Windows (GPO)
```
-Software\Policies\Mozilla\Firefox\WebsiteFilters\Block\1 = ""
-Software\Policies\Mozilla\Firefox\WebsiteFilters\Exceptions\1 = "http://example.org/*"
+Software\Policies\Mozilla\Firefox\WebsiteFilter\Block\1 = ""
+Software\Policies\Mozilla\Firefox\WebsiteFilter\Exceptions\1 = "http://example.org/*"
```
#### macOS
```
diff --combined windows/de-DE/firefox.adml
index 7f00a0f,f54fcc6..98a4b80
--- a/windows/de-DE/firefox.adml
+++ b/windows/de-DE/firefox.adml
@@@ -23,7 -23,6 +23,7 @@@
Firefox 73 oder höher, Firefox 68.5 ESR oder höher
Firefox 74 oder höher, Firefox 68.6 ESR oder höher
Firefox 75 oder höher, Firefox 68.7 ESR oder höher
+ Firefox 75 oder höher
Firefox 76 oder höher, Firefox 68.8 ESR oder höher
Firefox 77 oder höher, Firefox 68.9 ESR oder höher
Firefox
@@@ -44,15 -43,8 +44,15 @@@
Startseite
Suche
Einstellungen
+ User Messaging
Erlaubte Seiten
Gesperrte Seiten
+ Application Autoupdate
+ If this policy is enabled, Firefox is automatically updated without user approval.
+
+If this policy is disabled, Firefox updates are downloaded but the user can choose when to install the update.
+
+If this policy is not configured, the user can choose whether not Firefox is automatically updated.
Benutzerdefinierte Update-URL
Wenn diese Policy aktiviert ist, dann können Sie eine URL zu einem Update-Server setzen, die eine andere ist, als die standardmäÃige. Dies kann hilfreich sein, in dem Fall, wenn Sie einen eigenen Update-Server in Ihrem Netzwerk betreiben.
@@@ -143,6 -135,12 +143,12 @@@ Wenn Sie die Richtlinieneinstellung dea
Wenn Sie die Richtlinieneinstellung aktivieren, werden PDF-Dateien nicht in Firefox angezeigt.
Wenn Sie die Richtlinieneinstellung deaktivieren oder nicht konfigurieren, werden PDF-Dateien in Firefox angezeigt.
+ Disable the default browser agent.
+ If this policy is enabled, the default browser agent is disabled.
+
+ If this policy is disabled or not configured, the default browser agent is enabled.
+
+ For more information about the default browser agent, see https://firefox-source-docs.mozilla.org/toolkit/mozapps/defaultagent/default-browser-agent/index.html
Werkzeuge für Webentwickler deaktivieren
Wenn Sie die Richtlinieneinstellung aktivieren, können die Werkzeuge für Webentwickler in Firefox nicht benutzt werden.
@@@ -668,22 -666,6 +674,22 @@@ Wenn Sie die Richtlinieneinstellung dea
+ What's New
+ If this policy is disabled, the What's new icon and menuitem will not be displayed.
+
+If this policy is enabled or not configured, the What's New icon and menuitem will be displayed.
+ Extension Recommendations
+ If this policy is disabled, extensions will not be recommended as the user visits websites.
+
+If this policy is enabled or not configured, extensions will be recommended as the user visits websites.
+ Feature Recommendations
+ If this policy is disabled, Firefox features will not be recommended as the user uses Firefox.
+
+If this policy is enabled or not configured, Firefox features wil be recommended as the user uses Firefox.
+ Urlbar Interventions
+ If this policy is disabled, actions will not be recommended based on what the user types in the URL bar.
+
+If this policy is enabled or not configured, actions will be recommended based on what the user types in the URL bar.
Wenn diese Richtlinieneinstellung aktiviert ist, ist die Einstellung auf true gesperrt. Wenn diese Richtlinieneinstellung deaktiviert ist, ist die Einstellung auf false gesperrt.
Für eine Beschreibung der Einstellung, siehe:
diff --combined windows/en-US/firefox.adml
index 238b12d,32f2f47..1147813
--- a/windows/en-US/firefox.adml
+++ b/windows/en-US/firefox.adml
@@@ -23,7 -23,6 +23,7 @@@
Firefox 73 or later, Firefox 68.5 ESR or later
Firefox 74 or later, Firefox 68.6 ESR or later
Firefox 75 or later, Firefox 68.7 ESR or later
+ Firefox 75 or later
Firefox 76 or later, Firefox 68.8 ESR or later
Firefox 77 or later, Firefox 68.9 ESR or later
Firefox
@@@ -44,15 -43,8 +44,15 @@@
Home page
Search
Preferences
+ User Messaging
Allowed Sites
Blocked Sites
+ Application Autoupdate
+ If this policy is enabled, Firefox is automatically updated without user approval.
+
+If this policy is disabled Firefox updates are downloaded, but the user can choose when to install the update.
+
+If this policy is not configured, the user can choose whether not Firefox is automatically updated.
Custom Update URL
If this policy is enabled, you can set a URL to an update server other than the default. This could be helpful if you run your own update server on your network.
@@@ -143,6 -135,12 +143,12 @@@ If this policy is disabled or not confi
If this policy is enabled, PDF files are not viewed within Firefox.
If this policy is disabled or not configured, PDF files are viewed within Firefox.
+ Disable the default browser agent.
+ If this policy is enabled, the default browser agent is disabled.
+
+ If this policy is disabled or not configured, the default browser agent is enabled.
+
+ For more information about the default browser agent, see https://firefox-source-docs.mozilla.org/toolkit/mozapps/defaultagent/default-browser-agent/index.html
Disable Developer Tools
If this policy is enabled, web developer tools are not available within Firefox.
@@@ -670,22 -668,6 +676,22 @@@ If this policy is disabled or not confi
+ What's New
+ If this policy is disabled, the What's new icon and menuitem will not be displayed.
+
+If this policy is enabled or not configured, the What's New icon and menuitem will be displayed.
+ Extension Recommendations
+ If this policy is disabled, extensions will not be recommended as the user visits websites.
+
+If this policy is enabled or not configured, extensions will be recommended as the user visits websites.
+ Feature Recommendations
+ If this policy is disabled, Firefox features will not be recommended as the user uses Firefox.
+
+If this policy is enabled or not configured, Firefox features wil be recommended as the user uses Firefox.
+ Urlbar Interventions
+ If this policy is disabled, actions will not be recommended based on what the user types in the URL bar.
+
+If this policy is enabled or not configured, actions will be recommended based on what the user types in the URL bar.
If this policy is enabled, the preference is locked to true. If this policy is disabled, the preference is locked to false.
For a description of the preference, see:
diff --combined windows/es-ES/firefox.adml
index a4de3d1,31faded..f7504e6
--- a/windows/es-ES/firefox.adml
+++ b/windows/es-ES/firefox.adml
@@@ -23,7 -23,6 +23,7 @@@
Firefox 73 o posterior, Firefox 68.5 ESR o posterior
Firefox 74 o posterior, Firefox 68.6 ESR o posterior
Firefox 75 o posterior, Firefox 68.7 ESR o posterior
+ Firefox 75 o posterior
Firefox 76 o posterior, Firefox 68.8 ESR o posterior
Firefox 77 o posterior, Firefox 68.9 ESR o posterior
Firefox
@@@ -44,15 -43,8 +44,15 @@@
Página de inicio
Búsqueda
Preferencias
+ User Messaging
Sitios permitidos
Sitios bloqueados
+ Application Autoupdate
+ If this policy is enabled, Firefox is automatically updated without user approval.
+
+If this policy is disabled, Firefox updates are downloaded but the user can choose when to install the update.
+
+If this policy is not configured, the user can choose whether not Firefox is automatically updated.
URL de actualización personalizada
Si esta polÃtica está habilitada, podrá establecer una URL para un servidor de actualización que no sea el predeterminado. Esto podrÃa ser útil si ejecuta tu propio servidor de actualización en tu red.
@@@ -143,6 -135,12 +143,12 @@@ Si esta polÃtica está deshabilitada
Si esta polÃtica está habilitada, los archivos PDF no se visualizan dentro de Firefox.
Si esta polÃtica está deshabilitada o no está configurada, los archivos PDF se visualizan dentro de Firefox.
+ Disable the default browser agent.
+ If this policy is enabled, the default browser agent is disabled.
+
+ If this policy is disabled or not configured, the default browser agent is enabled.
+
+ For more information about the default browser agent, see https://firefox-source-docs.mozilla.org/toolkit/mozapps/defaultagent/default-browser-agent/index.html
Deshabilitar herramientas para desarrolladores
Si esta polÃtica está habilitada, las herramientas para desarrolladores web no están disponibles dentro de Firefox.
@@@ -670,22 -668,6 +676,22 @@@ Si esta polÃtica está deshabilitada
+ What's New
+ If this policy is disabled, the What's new icon and menuitem will not be displayed.
+
+If this policy is enabled or not configured, the What's New icon and menuitem will be displayed.
+ Extension Recommendations
+ If this policy is disabled, extensions will not be recommended as the user visits websites.
+
+If this policy is enabled or not configured, extensions will be recommended as the user visits websites.
+ Feature Recommendations
+ If this policy is disabled, Firefox features will not be recommended as the user uses Firefox.
+
+If this policy is enabled or not configured, Firefox features wil be recommended as the user uses Firefox.
+ Urlbar Interventions
+ If this policy is disabled, actions will not be recommended based on what the user types in the URL bar.
+
+If this policy is enabled or not configured, actions will be recommended based on what the user types in the URL bar.
Si esta polÃtica está habilitada, la preferencia se bloquea en true. Si esta polÃtica está deshabilitada, la preferencia está bloqueada en false.
Para una descripción de la preferencia, visite:
diff --combined windows/firefox.admx
index 7ffa898,17c85c5..36948d5
--- a/windows/firefox.admx
+++ b/windows/firefox.admx
@@@ -25,7 -25,6 +25,7 @@@
+
@@@ -91,21 -90,8 +91,21 @@@
+
+
+
+
+
+
+
+
+
+
+
+
+
@@@ -532,6 -518,16 +532,16 @@@
+
+
+
+
+
+
+
+
+
+
@@@ -3310,45 -3306,5 +3320,45 @@@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --combined windows/fr-FR/firefox.adml
index 563c2e4,f500ac7..6677c4a
--- a/windows/fr-FR/firefox.adml
+++ b/windows/fr-FR/firefox.adml
@@@ -23,7 -23,6 +23,7 @@@
Firefox 73 ou supérieur, Firefox 68.5 ESR ou supérieur
Firefox 74 ou supérieur, Firefox 68.6 ESR ou supérieur
Firefox 75 ou supérieur, Firefox 68.7 ESR ou supérieur
+ Firefox 75 ou supérieur
Firefox 76 ou supérieur, Firefox 68.8 ESR ou supérieur
Firefox 77 ou supérieur, Firefox 68.9 ESR ou supérieur
Firefox
@@@ -44,15 -43,8 +44,15 @@@
Page d'accueil
Recherche
Préférences
+ User Messaging
Sites autorisés
Sites bloqués
+ Application Autoupdate
+ If this policy is enabled, Firefox is automatically updated without user approval.
+
+If this policy is disabled, Firefox updates are downloaded but the user can choose when to install the update.
+
+If this policy is not configured, the user can choose whether not Firefox is automatically updated.
URL de mise à jour personnalisée
Si cette stratégie est activée, vous pouvez définir une URL vers un serveur de mise à jour autre que celui par défaut. Cela pourrait être utile si vous exécutez votre propre serveur de mise à jour sur votre réseau.
@@@ -143,6 -135,12 +143,12 @@@ Si cette stratégie est désactivée o
Si cette stratégie est activée, les fichiers PDF ne sont pas visualisés dans Firefox.
Si cette stratégie est désactivée ou non configurée, les fichiers PDF sont visualisés dans Firefox.
+ Disable the default browser agent.
+ If this policy is enabled, the default browser agent is disabled.
+
+ If this policy is disabled or not configured, the default browser agent is enabled.
+
+ For more information about the default browser agent, see https://firefox-source-docs.mozilla.org/toolkit/mozapps/defaultagent/default-browser-agent/index.html
Désactiver les outils de développement
Si cette stratégie est activée, les outils de développement Web ne sont pas disponibles dans Firefox.
@@@ -670,22 -668,6 +676,22 @@@ Si cette stratégie est désactivée o
+ What's New
+ If this policy is disabled, the What's new icon and menuitem will not be displayed.
+
+If this policy is enabled or not configured, the What's New icon and menuitem will be displayed.
+ Extension Recommendations
+ If this policy is disabled, extensions will not be recommended as the user visits websites.
+
+If this policy is enabled or not configured, extensions will be recommended as the user visits websites.
+ Feature Recommendations
+ If this policy is disabled, Firefox features will not be recommended as the user uses Firefox.
+
+If this policy is enabled or not configured, Firefox features wil be recommended as the user uses Firefox.
+ Urlbar Interventions
+ If this policy is disabled, actions will not be recommended based on what the user types in the URL bar.
+
+If this policy is enabled or not configured, actions will be recommended based on what the user types in the URL bar.
If this policy is enabled, the preference is locked to true. If this policy is disabled, the preference is locked to false.
For a description of the preference, see:
diff --combined windows/it-IT/firefox.adml
index 1dbf65c,d5cac30..48c6f6a
--- a/windows/it-IT/firefox.adml
+++ b/windows/it-IT/firefox.adml
@@@ -23,7 -23,6 +23,7 @@@
Firefox 73 o versione successiva, Firefox 68.5 ESR o versione successiva
Firefox 74 o versione successiva, Firefox 68.6 ESR o versione successiva
Firefox 75 o versione successiva, Firefox 68.7 ESR o versione successiva
+ Firefox 75 o versione successiva
Firefox 76 o versione successiva, Firefox 68.8 ESR o versione successiva
Firefox 77 o versione successiva, Firefox 68.9 ESR o versione successiva
Firefox
@@@ -44,15 -43,8 +44,15 @@@
Pagina iniziale
Ricerca
Preferenze
+ User Messaging
Siti consentiti
Siti bloccati
+ Application Autoupdate
+ If this policy is enabled, Firefox is automatically updated without user approval.
+
+If this policy is disabled, Firefox updates are downloaded but the user can choose when to install the update.
+
+If this policy is not configured, the user can choose whether not Firefox is automatically updated.
URL aggiornamento personalizzato
Se questo criterio è abilitato, è possibile impostare un URL diverso da quello predefinito per il server di aggiornamento. Ciò potrebbe essere utile se si dispone di un server di aggiornamento sulla propria rete.
@@@ -143,6 -135,12 +143,12 @@@ Se questo criterio è disabilitato o no
Se questo criterio è abilitato, i file PDF non sono visualizzati all'interno di Firefox.
Se questo criterio è disabilitato o non configurato, i file PDF sono visualizzati all'interno di Firefox.
+ Disable the default browser agent.
+ If this policy is enabled, the default browser agent is disabled.
+
+ If this policy is disabled or not configured, the default browser agent is enabled.
+
+ For more information about the default browser agent, see https://firefox-source-docs.mozilla.org/toolkit/mozapps/defaultagent/default-browser-agent/index.html
Disabilita Strumenti Sviluppo web
Se questo criterio è abilitato, gli Strumenti Sviluppo web non sono disponibili all'interno di Firefox.
@@@ -670,22 -668,6 +676,22 @@@ Se questo criterio è disabilitato o no
+ What's New
+ If this policy is disabled, the What's new icon and menuitem will not be displayed.
+
+If this policy is enabled or not configured, the What's New icon and menuitem will be displayed.
+ Extension Recommendations
+ If this policy is disabled, extensions will not be recommended as the user visits websites.
+
+If this policy is enabled or not configured, extensions will be recommended as the user visits websites.
+ Feature Recommendations
+ If this policy is disabled, Firefox features will not be recommended as the user uses Firefox.
+
+If this policy is enabled or not configured, Firefox features wil be recommended as the user uses Firefox.
+ Urlbar Interventions
+ If this policy is disabled, actions will not be recommended based on what the user types in the URL bar.
+
+If this policy is enabled or not configured, actions will be recommended based on what the user types in the URL bar.
Se questo criterio è abilitato, la preferenza è impostata a Vero e resa non modificabile. Se questo criterio è disabilitato, la preferenza è impostata a Falso e resa non modificabile.
Per una descrizione della preferenza, si veda:
diff --combined windows/zh-TW/firefox.adml
index 2c31b4c,2437b10..67a9bb7
--- a/windows/zh-TW/firefox.adml
+++ b/windows/zh-TW/firefox.adml
@@@ -23,7 -23,6 +23,7 @@@
Firefox 73 ææ´æ°çæ¬ãFirefox 68.5 ESR ææ´æ°çæ¬
Firefox 74 ææ´æ°çæ¬ãFirefox 68.6 ESR ææ´æ°çæ¬
Firefox 75 ææ´æ°çæ¬ãFirefox 68.7 ESR ææ´æ°çæ¬
+ Firefox 75 ææ´æ°çæ¬
Firefox 76 ææ´æ°çæ¬ãFirefox 68.8 ESR ææ´æ°çæ¬
Firefox 77 ææ´æ°çæ¬ãFirefox 68.9 ESR ææ´æ°çæ¬
Firefox
@@@ -44,15 -43,8 +44,15 @@@
é¦é
æå°
å好è¨å®
+ User Messaging
å
許ç網ç«
å°éç網ç«
+ Application Autoupdate
+ If this policy is enabled, Firefox is automatically updated without user approval.
+
+If this policy is disabled, Firefox updates are downloaded but the user can choose when to install the update.
+
+If this policy is not configured, the user can choose whether not Firefox is automatically updated.
èªè¨æ´æ°ç¶²å
è¥åç¨æ¤ååï¼å¯æå®ç¨ä¾æª¢æ¥æ´æ°ç伺æå¨ç¶²åãç¶æ¨å¨å
§é¨ç¶²è·¯èªè¡æ¶è¨æ´æ°ä¼ºæå¨æææ幫å©ã
@@@ -143,6 -135,12 +143,12 @@@ If this policy is enabled or not config
è¥åç¨æ¤ååï¼å°ä¸æä½¿ç¨ Firefox å
§å»ºæª¢è¦å¨éå PDF æªæ¡ã
è¥åç¨æä¸è¨å®æ¤ååï¼åæä½¿ç¨ Firefox å
§å»ºæª¢è¦å¨éå PDF æªæ¡ã
+ Disable the default browser agent.
+ If this policy is enabled, the default browser agent is disabled.
+
+ If this policy is disabled or not configured, the default browser agent is enabled.
+
+ For more information about the default browser agent, see https://firefox-source-docs.mozilla.org/toolkit/mozapps/defaultagent/default-browser-agent/index.html
åç¨éç¼è
å·¥å
·
è¥åç¨æ¤ååï¼å°éé Firefox ç¶ä¸ç網é éç¼è
å·¥å
·åè½ã
@@@ -668,22 -666,6 +674,22 @@@ If this policy is disabled or not confi
+ What's New
+ If this policy is disabled, the What's new icon and menuitem will not be displayed.
+
+If this policy is enabled or not configured, the What's New icon and menuitem will be displayed.
+ Extension Recommendations
+ If this policy is disabled, extensions will not be recommended as the user visits websites.
+
+If this policy is enabled or not configured, extensions will be recommended as the user visits websites.
+ Feature Recommendations
+ If this policy is disabled, Firefox features will not be recommended as the user uses Firefox.
+
+If this policy is enabled or not configured, Firefox features wil be recommended as the user uses Firefox.
+ Urlbar Interventions
+ If this policy is disabled, actions will not be recommended based on what the user types in the URL bar.
+
+If this policy is enabled or not configured, actions will be recommended based on what the user types in the URL bar.
è¥åç¨æ¤ååï¼å好è¨å®å°éå®çº trueãè¥åç¨æ¤ååï¼å好è¨å®åéå®çº falseã
è¥éè¦å好è¨å®ç詳細說æï¼è«åèï¼