From: Michael Kaply <345868+mkaply@users.noreply.github.com> Date: Mon, 6 Apr 2020 20:31:42 +0000 (-0500) Subject: Merge branch 'master' into DNSOverHTTPS_ExcludedDomains X-Git-Tag: v1.15~9^2 X-Git-Url: https://git.p6c8.net/policy-templates.git/commitdiff_plain/1a0722e4ce84218f68ad588386c5f0c77e4cb657?hp=bbfc49763d2515bb1238e441d864a0824c46755d Merge branch 'master' into DNSOverHTTPS_ExcludedDomains --- diff --git a/README.md b/README.md index 071ebcd..3ec9588 100644 --- a/README.md +++ b/README.md @@ -6,6 +6,7 @@ Policies can be specified using the Group Policy templates on Windows (https://g | 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). @@ -22,6 +23,7 @@ Policies can be specified using the Group Policy templates on Windows (https://g | **[`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. @@ -31,6 +33,7 @@ Policies can be specified using the Group Policy templates on Windows (https://g | **[`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. @@ -83,8 +86,42 @@ Policies can be specified using the Group Policy templates on Windows (https://g | **[`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. @@ -653,6 +690,26 @@ Software\Policies\Mozilla\Firefox\DisableBuiltinPDFViewer = 0x1 | 0x0 } } ``` +### 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. @@ -2264,7 +2321,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. @@ -3028,6 +3085,58 @@ Software\Policies\Mozilla\Firefox\SupportMenu\AccessKey = "S" } } ``` +### 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. @@ -3037,8 +3146,8 @@ Block websites from being visited. The parameters take an array of Match Pattern #### 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 --git a/mac/org.mozilla.firefox.plist b/mac/org.mozilla.firefox.plist index 9ac6498..a0813c1 100644 --- a/mac/org.mozilla.firefox.plist +++ b/mac/org.mozilla.firefox.plist @@ -4,6 +4,8 @@ EnterprisePoliciesEnabled + AppAutoUpdate + AppUpdateURL https://www.example.com/update.xml Authentication @@ -416,6 +418,17 @@ SearchBar separate + UserMessaging + + WhatsNew + + ExtensionRecommendations + + FeatureRecommendations + + UrlbarInterventions + + WebsiteFilter Block diff --git a/windows/de-DE/firefox.adml b/windows/de-DE/firefox.adml index 3d8bcd1..8778bfd 100644 --- a/windows/de-DE/firefox.adml +++ b/windows/de-DE/firefox.adml @@ -22,6 +22,10 @@ Firefox 72 oder höher, Firefox 68.4 ESR oder höher 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 Berechtigungen Kamera @@ -40,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. @@ -150,6 +161,12 @@ Wenn Sie die Richtlinieneinstellung deaktivieren oder nicht konfigurieren, werde 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. @@ -675,6 +692,22 @@ Wenn Sie die Richtlinieneinstellung deaktivieren oder nicht konfigurieren, verwe Wenn diese Richtlinieneinstellung aktiviert ist, wird ein Menüeintrag mit spezifizierten Supportinformationen zum "Hilfe"-Menü hinzugefügt. Wenn diese Richtlinieneinstellung deaktiviert oder nicht konfiguriert ist, wird kein Menüeintrag hinzugefügt. + 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 --git a/windows/en-US/firefox.adml b/windows/en-US/firefox.adml index 942d68b..1409495 100644 --- a/windows/en-US/firefox.adml +++ b/windows/en-US/firefox.adml @@ -22,6 +22,10 @@ Firefox 72 or later, Firefox 68.4 ESR or later 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 Permissions Camera @@ -40,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. @@ -150,6 +161,12 @@ If this policy is disabled or not configured, the browser receives updates.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. @@ -677,6 +694,22 @@ If this policy is disabled or not configured, Firefox defaults to a maximum of T If this policy is enabled, a new menuitem is added to the help menu with support information. If this policy is disabled or not configured, no menuitem is added. + 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 --git a/windows/es-ES/firefox.adml b/windows/es-ES/firefox.adml index e09b748..0ab27a5 100644 --- a/windows/es-ES/firefox.adml +++ b/windows/es-ES/firefox.adml @@ -22,6 +22,10 @@ Firefox 72 o posterior, Firefox 68.4 ESR o posterior 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 Permisos Cámara @@ -40,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. @@ -150,6 +161,12 @@ Si esta política está deshabilitada o no está configurada, el navegador recib 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. @@ -677,6 +694,22 @@ Si esta política está deshabilitada o no está configurada, Firefox establecer Si esta política está habilitada, se añadirá un elemento nuevo al menú de ayuda con información de soporte. Si esta política está deshabilitada o no está configurada, no se añadirá ningún elemento al menú. + 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 --git a/windows/firefox.admx b/windows/firefox.admx index 99439d8..8e9567a 100644 --- a/windows/firefox.admx +++ b/windows/firefox.admx @@ -18,12 +18,16 @@ + - + + + + @@ -90,8 +94,21 @@ + + + + + + + + + + + + + @@ -552,6 +569,16 @@ + + + + + + + + + + @@ -3330,5 +3357,45 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/windows/fr-FR/firefox.adml b/windows/fr-FR/firefox.adml index 583038d..18398a0 100644 --- a/windows/fr-FR/firefox.adml +++ b/windows/fr-FR/firefox.adml @@ -22,6 +22,10 @@ Firefox 72 ou supérieur, Firefox 68.4 ESR ou supérieur 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 Permissions Caméra @@ -40,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. @@ -150,6 +161,12 @@ Si cette stratégie est désactivée ou non configurée, le navigateur reçoit l 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. @@ -677,6 +694,22 @@ Si cette stratégie est désactivée ou non configurée, Firefox utilise par dé If this policy is enabled, a new menuitem is added to the help menu with support information. If this policy is disabled or not configured, no menuitem is added. + 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 --git a/windows/it-IT/firefox.adml b/windows/it-IT/firefox.adml index fd766e1..ee1a97b 100644 --- a/windows/it-IT/firefox.adml +++ b/windows/it-IT/firefox.adml @@ -22,6 +22,10 @@ Firefox 72 o versione successiva, Firefox 68.4 ESR o versione successiva 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 Permessi Fotocamera @@ -40,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. @@ -150,6 +161,12 @@ Se questo criterio è disabilitato o non configurato, il browser riceverà aggio 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. @@ -677,6 +694,22 @@ Se questo criterio è disabilitato o non configurato, per impostazione predefini Se questo criterio è abilitato, al menù Aiuto sarà aggiunta una nuova voce di menù per richiamare le informazioni di supporto. Se questo criterio è disabilitato o non configurato, non sarà aggiunta nessuna voce. + 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 --git a/windows/zh-TW/firefox.adml b/windows/zh-TW/firefox.adml index ae3285c..760759b 100644 --- a/windows/zh-TW/firefox.adml +++ b/windows/zh-TW/firefox.adml @@ -22,6 +22,10 @@ Firefox 72 或更新版本、Firefox 68.4 ESR 或更新版本 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 權限 攝影機 @@ -40,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. 自訂更新網址 若啟用此原則,可指定用來檢查更新的伺服器網址。當您在內部網路自行架設更新伺服器時會有幫助。 @@ -150,6 +161,12 @@ If this policy is disabled or not configured, no domains are excluded from DNS o 若啟用此原則,將不會使用 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 當中的網頁開發者工具功能。 @@ -675,6 +692,22 @@ If this policy is disabled or not configured, the user can change tracking prote 若啟用此原則,將在說明選單中加入技術支援資訊項目。 若停用或不設定此原則,則不會加入選單項目。 + 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。 若需要偏好設定的詳細說明,請參考: