`Block` is a list of origins (not domains) where cookies are always blocked. You must include http or https.
-`Default` determines whether cookies are accepted at all.
+`Behavior` sets the default behavior for cookies based on the values below.
-`AcceptThirdParty` determines how third-party cookies are handled.
+`BehaviorPrivateBrowsing` sets the default behavior for cookies in private browsing based on the values below.
+
+| Value | Description
+| --- | ---
+| accept | Accept all cookies
+| reject-foreign | Reject third party cookies
+| reject | Reject all cookies
+| limit-foreign | Reject third party cookies for sites you haven't visited
+| reject-tracker | Reject cookies for known trackers (default)
+| reject-tracker-and-partition-foreign | Reject cookies for known trackers and partition third-party cookies (Total Cookie Protection) (default for private browsing)
+
+`Default` (Deprecated) determines whether cookies are accepted at all.
+
+`AcceptThirdParty` (Deprecated) determines how third-party cookies are handled.
`ExpireAtSessionEnd` determines when cookies expire.
-`RejectTracker` only rejects cookies for trackers.
+`RejectTracker` (Deprecated) only rejects cookies for trackers.
`Locked` prevents the user from changing cookie preferences.
-**Compatibility:** Firefox 60, Firefox ESR 60 (RejectTracker added in Firefox 63, AllowSession added in Firefox 79/78.1)\
+**Compatibility:** Firefox 60, Firefox ESR 60 (RejectTracker added in Firefox 63, AllowSession added in Firefox 79/78.1, Behavior added in Firefox 95/91.4)\
**CCK2 Equivalent:** N/A\
-**Preferences Affected:** `network.cookie.cookieBehavior`, `network.cookie.lifetimePolicy`
+**Preferences Affected:** `network.cookie.cookieBehavior`, `network.cookie.cookieBehavior.pbmode`, `network.cookie.lifetimePolicy`
#### Windows (GPO)
```
Software\Policies\Mozilla\Firefox\Cookies\AcceptThirdParty = "always" | "never" | "from-visited"
Software\Policies\Mozilla\Firefox\Cookies\ExpireAtSessionEnd = 0x1 | 0x0
Software\Policies\Mozilla\Firefox\Cookies\RejectTracker = 0x1 | 0x0
+Software\Policies\Mozilla\Firefox\Cookies\Behavior = "accept" | "reject-foreign" | "reject" | "limit-foreign" | "reject-tracker" | "reject-tracker-and-partition-foreign"
+Software\Policies\Mozilla\Firefox\Cookies\BehaviorPrivateBrowsing = "accept" | "reject-foreign" | "reject" | "limit-foreign" | "reject-tracker" | "reject-tracker-and-partition-foreign"
Software\Policies\Mozilla\Firefox\Cookies\Locked = 0x1 | 0x0
```
#### Windows (Intune)
```
<enabled/> or <disabled/>
```
+OMA-URI:
+```
+./Device/Vendor/MSFT/Policy/Config/Firefox~Policy~firefox~Cookies/Cookies_Behavior
+```
+Value (string):
+```
+<enabled/>
+<data id="Cookies_Behavior" value="accept | reject-foreign | reject | limit-foreign | reject-tracker | reject-tracker-and-partition-foreign"/>
+```
+OMA-URI:
+```
+./Device/Vendor/MSFT/Policy/Config/Firefox~Policy~firefox~Cookies/Cookies_BehaviorPrivateBrowsing
+```
+Value (string):
+```
+<enabled/>
+<data id="Cookies_BehaviorPrivateBrowsing" value="accept | reject-foreign | reject | limit-foreign | reject-tracker | reject-tracker-and-partition-foreign"/>
+```
#### macOS
```
<dict>
<true/> | <false/>
<key>Locked</key>
<true/> | <false/>
+ <key>Behavior</key>
+ <string>accept | reject-foreign | reject | limit-foreign | reject-tracker | reject-tracker-and-partition-foreign</string>
+ <key>BehaviorPrivateBrowsing</key>
+ <string>accept | reject-foreign | reject | limit-foreign | reject-tracker | reject-tracker-and-partition-foreign</string>
</dict>
</dict>
```
"AcceptThirdParty": "always" | "never" | "from-visited",
"ExpireAtSessionEnd": true | false,
"RejectTracker": true | false,
- "Locked": true | false
+ "Locked": true | false,
+ "Behavior": "accept" | "reject-foreign" | "reject" | "limit-foreign" | "reject-tracker" | "reject-tracker-and-partition-foreign",
+ "BehaviorPrivateBrowsing": "accept" | "reject-foreign" | "reject" | "limit-foreign" | "reject-tracker" | "reject-tracker-and-partition-foreign",
}
}
}
<array>
<string>https://www.example.edu/</string>
</array>
- <key>Default</key>
- <false/>
- <key>AcceptThirdParty</key>
- <string>never</string>
- <key>ExpireAtSessionEnd</key>
- <true/>
- <key>RejectTracker</key>
- <true/>
+ <key>Behavior</key>
+ <string>limit-foreign</string>
<key>Locked</key>
<true/>
</dict>
<string id="Cookies_Locked_Explain">Wenn Sie die Richtlinieneinstellung aktivieren können Benutzer die Cookie-Einstellungen nicht ändern.
Wenn Sie die Richtlinieneinstellung deaktivieren oder nicht konfigurieren, können Benutzer die Cookie-Einstellungen ändern.</string>
+ <string id="Cookies_Behavior">Cookie Behavior</string>
+ <string id="Cookies_Behavior_Explain">If this policy is enabled, you can configure cookie behavior.
+
+If this policy is not configured or disabled, cookies are rejected for known trackers.</string>
+ <string id="Cookies_BehaviorPrivateBrowsing">Cookie Behavior in private browsing</string>
+ <string id="Cookies_BehaviorPrivateBrowsing_Explain">If this policy is enabled, you can configure cookie behavior in private browsing.
+
+If this policy is not configured or disabled, in private browsing, cookies are rejected for known trackers and third-party cookies are partitioned.</string>
+ <string id="Cookies_Behavior_Accept">Accept all cookies</string>
+ <string id="Cookies_Behavior_RejectForeign">Reject third party cookies</string>
+ <string id="Cookies_Behavior_Reject">Reject all cookies</string>
+ <string id="Cookies_Behavior_LimitForeign">Reject third party cookies for sites you haven't visited</string>
+ <string id="Cookies_Behavior_RejectTracker">Reject cookies for known trackers</string>
+ <string id="Cookies_Behavior_RejectTrackerAndPartitionForeign">Reject cookies for known trackers and partition third-party cookies (Total Cookie Protection)</string>
<string id="Camera_Allow_Explain">Wenn diese Richtlinieneinstellung aktiviert ist, wird die Kamera für die genannten Quellen automatisch freigegeben.
Wenn diese Richtlinieneinstellung deaktiviert oder nicht konfiguriert ist, wird die Standardeinstellung befolgt.</string>
<presentation id="Cookies_AcceptThirdParty">
<dropdownList refId="Cookies_AcceptThirdParty"/>
</presentation>
+ <presentation id="Cookies_Behavior">
+ <dropdownList refId="Cookies_Behavior"/>
+ </presentation>
+ <presentation id="Cookies_BehaviorPrivateBrowsing">
+ <dropdownList refId="Cookies_BehaviorPrivateBrowsing"/>
+ </presentation>
<presentation id="SearchBar">
<dropdownList refId="SearchBar"/>
</presentation>
<string id="Cookies_Block_Explain">If this policy is enabled, cookies are blocked for the origins indicated. If a top level domain is specified (http://example.org), cookies are blocked from all subdomains as well.
If this policy is disabled or not configured, cookies are not blocked by default.</string>
- <string id="Cookies_Default">Accept cookies from websites</string>
+ <string id="Cookies_Default">Accept cookies from websites (Deprecated)</string>
<string id="Cookies_Default_Explain">If this policy is disabled, cookies are not accepted from websites by default.
If this policy is not configured or enabled, cookies are accepted from websites.</string>
- <string id="Cookies_AcceptThirdParty">Accept third-party cookies</string>
+ <string id="Cookies_AcceptThirdParty">Accept third-party cookies (Deprecated)</string>
<string id="Cookies_AcceptThirdParty_Explain">If this policy is enabled and cookies are allowed, you can set when to accept third-party cookies.
This setting is ignored if this policy is disabled or not configured or if cookies are not allowed.</string>
<string id="Cookies_ExpireAtSessionEnd_Explain">If this policy is enabled and cookies are allowed, they will expire when Firefox is closed.
This setting is ignored if this policy is disabled or not configured or if cookies are not allowed.</string>
- <string id="Cookies_RejectTracker">Reject trackers</string>
+ <string id="Cookies_RejectTracker">Reject trackers (Deprecated)</string>
<string id="Cookies_RejectTracker_Explain">If this policy is enabled and cookies are allowed, Firefox will reject tracker cookies by default.
This setting is ignored if this policy is disabled or not configured or if cookies are not allowed.</string>
<string id="Cookies_Locked">Do not allow preferences to be changed</string>
- <string id="Cookies_Locked_Explain">If this policy is enabled, cookie preferences cannot be changed by the user.
-
-If this policy is disabled or not configured, the user can change their cookie preferences.</string>
+ <string id="Cookies_Locked_Explain">If this policy is enabled, cookie preferences cannot be changed by the user.</string>
+ <string id="Cookies_Behavior">Cookie Behavior</string>
+ <string id="Cookies_Behavior_Explain">If this policy is enabled, you can configure cookie behavior.
+
+If this policy is not configured or disabled, cookies are rejected for known trackers.</string>
+ <string id="Cookies_BehaviorPrivateBrowsing">Cookie Behavior in private browsing</string>
+ <string id="Cookies_BehaviorPrivateBrowsing_Explain">If this policy is enabled, you can configure cookie behavior in private browsing.
+
+If this policy is not configured or disabled, in private browsing, cookies are rejected for known trackers and third-party cookies are partitioned.</string>
+ <string id="Cookies_Behavior_Accept">Accept all cookies</string>
+ <string id="Cookies_Behavior_RejectForeign">Reject third party cookies</string>
+ <string id="Cookies_Behavior_Reject">Reject all cookies</string>
+ <string id="Cookies_Behavior_LimitForeign">Reject third party cookies for sites you haven't visited</string>
+ <string id="Cookies_Behavior_RejectTracker">Reject cookies for known trackers</string>
+ <string id="Cookies_Behavior_RejectTrackerAndPartitionForeign">Reject cookies for known trackers and partition third-party cookies (Total Cookie Protection)</string>
<string id="Camera_Allow_Explain">If this policy is enabled, access to the camera is always allowed for the origins indicated.
If this policy is disabled or not configured, the default camera policy is followed.</string>
<presentation id="Cookies_AcceptThirdParty">
<dropdownList refId="Cookies_AcceptThirdParty"/>
</presentation>
+ <presentation id="Cookies_Behavior">
+ <dropdownList refId="Cookies_Behavior"/>
+ </presentation>
+ <presentation id="Cookies_BehaviorPrivateBrowsing">
+ <dropdownList refId="Cookies_BehaviorPrivateBrowsing"/>
+ </presentation>
<presentation id="SearchBar">
<dropdownList refId="SearchBar"/>
</presentation>
<string id="Cookies_Locked_Explain">Si esta política está habilitada, el usuario no podrá cambiar las preferencias de cookies.
Si esta política está deshabilitada o no está configurada, el usuario podrá cambiar tus preferencias de cookies.</string>
+ <string id="Cookies_Behavior">Cookie Behavior</string>
+ <string id="Cookies_Behavior_Explain">If this policy is enabled, you can configure cookie behavior.
+
+If this policy is not configured or disabled, cookies are rejected for known trackers.</string>
+ <string id="Cookies_BehaviorPrivateBrowsing">Cookie Behavior in private browsing</string>
+ <string id="Cookies_BehaviorPrivateBrowsing_Explain">If this policy is enabled, you can configure cookie behavior in private browsing.
+
+If this policy is not configured or disabled, in private browsing, cookies are rejected for known trackers and third-party cookies are partitioned.</string>
+ <string id="Cookies_Behavior_Accept">Accept all cookies</string>
+ <string id="Cookies_Behavior_RejectForeign">Reject third party cookies</string>
+ <string id="Cookies_Behavior_Reject">Reject all cookies</string>
+ <string id="Cookies_Behavior_LimitForeign">Reject third party cookies for sites you haven't visited</string>
+ <string id="Cookies_Behavior_RejectTracker">Reject cookies for known trackers</string>
+ <string id="Cookies_Behavior_RejectTrackerAndPartitionForeign">Reject cookies for known trackers and partition third-party cookies (Total Cookie Protection)</string>
<string id="Camera_Allow_Explain">Si esta política está habilitada, el acceso a la cámara siempre estará permitido para los orígenes indicados.
Si esta política está deshabilitada o no está configurada, se seguirá la política de cámara predeterminada.</string>
<presentation id="Cookies_AcceptThirdParty">
<dropdownList refId="Cookies_AcceptThirdParty"/>
</presentation>
+ <presentation id="Cookies_Behavior">
+ <dropdownList refId="Cookies_Behavior"/>
+ </presentation>
+ <presentation id="Cookies_BehaviorPrivateBrowsing">
+ <dropdownList refId="Cookies_BehaviorPrivateBrowsing"/>
+ </presentation>
<presentation id="SearchBar">
<dropdownList refId="SearchBar"/>
</presentation>
<decimal value="0"/>
</disabledValue>
</policy>
+ <policy name="Cookies_Behavior" class="Both" displayName="$(string.Cookies_Behavior)" explainText="$(string.Cookies_Behavior_Explain)" key="Software\Policies\Mozilla\Firefox\Cookies" presentation="$(presentation.Cookies_Behavior)">
+ <parentCategory ref="Cookies"/>
+ <supportedOn ref="SUPPORTED_FF95"/>
+ <elements>
+ <enum id="Cookies_Behavior" valueName="Behavior">
+ <item displayName="$(string.Cookies_Behavior_Accept)">
+ <value>
+ <string>accept</string>
+ </value>
+ </item>
+ <item displayName="$(string.Cookies_Behavior_RejectForeign)">
+ <value>
+ <string>reject-foreign</string>
+ </value>
+ </item>
+ <item displayName="$(string.Cookies_Behavior_Reject)">
+ <value>
+ <string>reject</string>
+ </value>
+ </item>
+ <item displayName="$(string.Cookies_Behavior_LimitForeign)">
+ <value>
+ <string>limit-foreign</string>
+ </value>
+ </item>
+ <item displayName="$(string.Cookies_Behavior_RejectTracker)">
+ <value>
+ <string>reject-tracker</string>
+ </value>
+ </item>
+ <item displayName="$(string.Cookies_Behavior_RejectTrackerAndPartitionForeign)">
+ <value>
+ <string>reject-tracker-and-partition-foreign</string>
+ </value>
+ </item>
+ </enum>
+ </elements>
+ </policy>
+ <policy name="Cookies_BehaviorPrivateBrowsing" class="Both" displayName="$(string.Cookies_BehaviorPrivateBrowsing)" explainText="$(string.Cookies_BehaviorPrivateBrowsing_Explain)" key="Software\Policies\Mozilla\Firefox\Cookies" presentation="$(presentation.Cookies_BehaviorPrivateBrowsing)">
+ <parentCategory ref="Cookies"/>
+ <supportedOn ref="SUPPORTED_FF95"/>
+ <elements>
+ <enum id="Cookies_BehaviorPrivateBrowsing" valueName="BehaviorPrivateBrowsing">
+ <item displayName="$(string.Cookies_Behavior_Accept)">
+ <value>
+ <string>accept</string>
+ </value>
+ </item>
+ <item displayName="$(string.Cookies_Behavior_RejectForeign)">
+ <value>
+ <string>reject-foreign</string>
+ </value>
+ </item>
+ <item displayName="$(string.Cookies_Behavior_Reject)">
+ <value>
+ <string>reject</string>
+ </value>
+ </item>
+ <item displayName="$(string.Cookies_Behavior_LimitForeign)">
+ <value>
+ <string>limit-foreign</string>
+ </value>
+ </item>
+ <item displayName="$(string.Cookies_Behavior_RejectTracker)">
+ <value>
+ <string>reject-tracker</string>
+ </value>
+ </item>
+ <item displayName="$(string.Cookies_Behavior_RejectTrackerAndPartitionForeign)">
+ <value>
+ <string>reject-tracker-and-partition-foreign</string>
+ </value>
+ </item>
+ </enum>
+ </elements>
+ </policy>
<policy name="Camera_Allow" class="Both" displayName="$(string.Allow)" explainText="$(string.Camera_Allow_Explain)" key="Software\Policies\Mozilla\Firefox\Permissions" presentation="$(presentation.Permissions)">
<parentCategory ref="Camera"/>
<supportedOn ref="SUPPORTED_FF62"/>
<string id="Cookies_Locked_Explain">Si cette stratégie est activée, les préférences en matière de cookies ne peuvent pas être modifiées par l'utilisateur.\r
\r
Si cette stratégie est désactivée ou non configurée, l'utilisateur peut modifier ses préférences en matière de cookies.</string>\r
+ <string id="Cookies_Behavior">Cookie Behavior</string>\r
+ <string id="Cookies_Behavior_Explain">If this policy is enabled, you can configure cookie behavior.\r
+\r
+If this policy is not configured or disabled, cookies are rejected for known trackers.</string>\r
+ <string id="Cookies_BehaviorPrivateBrowsing">Cookie Behavior in private browsing</string>\r
+ <string id="Cookies_BehaviorPrivateBrowsing_Explain">If this policy is enabled, you can configure cookie behavior in private browsing.\r
+\r
+If this policy is not configured or disabled, in private browsing, cookies are rejected for known trackers and third-party cookies are partitioned.</string>\r
+ <string id="Cookies_Behavior_Accept">Accept all cookies</string>\r
+ <string id="Cookies_Behavior_RejectForeign">Reject third party cookies</string>\r
+ <string id="Cookies_Behavior_Reject">Reject all cookies</string>\r
+ <string id="Cookies_Behavior_LimitForeign">Reject third party cookies for sites you haven't visited</string>\r
+ <string id="Cookies_Behavior_RejectTracker">Reject cookies for known trackers</string>\r
+ <string id="Cookies_Behavior_RejectTrackerAndPartitionForeign">Reject cookies for known trackers and partition third-party cookies (Total Cookie Protection)</string>\r
<string id="Camera_Allow_Explain">Si cette stratégie est activée, l'accès à la caméra est toujours autorisé pour les origines indiquées.\r
\r
Si cette stratégie est désactivée ou non configurée, la stratégie par défaut de la caméra est appliquée.</string>\r
<presentation id="Cookies_AcceptThirdParty">\r
<dropdownList refId="Cookies_AcceptThirdParty"/>\r
</presentation>\r
+ <presentation id="Cookies_Behavior">\r
+ <dropdownList refId="Cookies_Behavior"/>\r
+ </presentation>\r
+ <presentation id="Cookies_BehaviorPrivateBrowsing">\r
+ <dropdownList refId="Cookies_BehaviorPrivateBrowsing"/>\r
+ </presentation>\r
<presentation id="SearchBar">\r
<dropdownList refId="SearchBar"/>\r
</presentation>\r
<string id="Cookies_Locked_Explain">Se questo criterio è abilitato, le preferenze relative ai cookie non possono essere modificate dall'utente.
Se questo criterio è disabilitato o non configurato, l'utente può modificare le preferenze relative ai cookie.</string>
+ <string id="Cookies_Behavior">Cookie Behavior</string>
+ <string id="Cookies_Behavior_Explain">If this policy is enabled, you can configure cookie behavior.
+
+If this policy is not configured or disabled, cookies are rejected for known trackers.</string>
+ <string id="Cookies_BehaviorPrivateBrowsing">Cookie Behavior in private browsing</string>
+ <string id="Cookies_BehaviorPrivateBrowsing_Explain">If this policy is enabled, you can configure cookie behavior in private browsing.
+
+If this policy is not configured or disabled, in private browsing, cookies are rejected for known trackers and third-party cookies are partitioned.</string>
+ <string id="Cookies_Behavior_Accept">Accept all cookies</string>
+ <string id="Cookies_Behavior_RejectForeign">Reject third party cookies</string>
+ <string id="Cookies_Behavior_Reject">Reject all cookies</string>
+ <string id="Cookies_Behavior_LimitForeign">Reject third party cookies for sites you haven't visited</string>
+ <string id="Cookies_Behavior_RejectTracker">Reject cookies for known trackers</string>
+ <string id="Cookies_Behavior_RejectTrackerAndPartitionForeign">Reject cookies for known trackers and partition third-party cookies (Total Cookie Protection)</string>
<string id="Camera_Allow_Explain">Se questo criterio è abilitato, l'accesso alla fotocamera è sempre consentito per le origini indicate.
Se questo criterio è disabilitato o non configurato verrà seguita la politica predefinita per la fotocamera.</string>
<presentation id="Cookies_AcceptThirdParty">
<dropdownList refId="Cookies_AcceptThirdParty"/>
</presentation>
+ <presentation id="Cookies_Behavior">
+ <dropdownList refId="Cookies_Behavior"/>
+ </presentation>
+ <presentation id="Cookies_BehaviorPrivateBrowsing">
+ <dropdownList refId="Cookies_BehaviorPrivateBrowsing"/>
+ </presentation>
<presentation id="SearchBar">
<dropdownList refId="SearchBar"/>
</presentation>
<string id="Cookies_Locked_Explain"> Если эта политика включена, пользователь не может изменить настройки файлов cookie.
Если эта политика отключена или не настроена, пользователь может изменить свои настройки файлов cookie. </string>
+ <string id="Cookies_Behavior">Cookie Behavior</string>
+ <string id="Cookies_Behavior_Explain">If this policy is enabled, you can configure cookie behavior.
+
+If this policy is not configured or disabled, cookies are rejected for known trackers.</string>
+ <string id="Cookies_BehaviorPrivateBrowsing">Cookie Behavior in private browsing</string>
+ <string id="Cookies_BehaviorPrivateBrowsing_Explain">If this policy is enabled, you can configure cookie behavior in private browsing.
+
+If this policy is not configured or disabled, in private browsing, cookies are rejected for known trackers and third-party cookies are partitioned.</string>
+ <string id="Cookies_Behavior_Accept">Accept all cookies</string>
+ <string id="Cookies_Behavior_RejectForeign">Reject third party cookies</string>
+ <string id="Cookies_Behavior_Reject">Reject all cookies</string>
+ <string id="Cookies_Behavior_LimitForeign">Reject third party cookies for sites you haven't visited</string>
+ <string id="Cookies_Behavior_RejectTracker">Reject cookies for known trackers</string>
+ <string id="Cookies_Behavior_RejectTrackerAndPartitionForeign">Reject cookies for known trackers and partition third-party cookies (Total Cookie Protection)</string>
<string id="Camera_Allow_Explain"> Если эта политика включена, доступ к камере всегда разрешен для указанных источников.
Если эта политика отключена или не настроена, применяется политика камеры по умолчанию. </string>
</presentation>
<presentation id="Permissions"><listBox refId="Permissions"/></presentation>
<presentation id="PopupsAllow"><listBox refId="PopupsAllowDesc">Разрешить всплывающие окна для веб-сайтов </listBox> </presentation>
- <presentation id="Cookies_AcceptThirdParty">
- <dropdownList refId="Cookies_AcceptThirdParty" />
- </presentation>
- <presentation id="SearchBar">
- <dropdownList refId="SearchBar" />
- </presentation>
- <presentation id="TrackingProtection">
- <checkBox refId="TrackingProtectionLocked"> Не разрешать изменять настройки защиты от отслеживания. </checkBox>
- <checkBox refId="Cryptomining"> Блокировать скрипты майнинга. </checkBox>
- <checkBox refId="Fingerprinting"> Блокировать скрипты снятия отпечатков пальцев. </checkBox>
- <text> Исключения: </text>
+ <presentation id="Cookies_AcceptThirdParty">
+ <dropdownList refId="Cookies_AcceptThirdParty" />
+ </presentation>
+ <presentation id="Cookies_Behavior">
+ <dropdownList refId="Cookies_Behavior"/>
+ </presentation>
+ <presentation id="Cookies_BehaviorPrivateBrowsing">
+ <dropdownList refId="Cookies_BehaviorPrivateBrowsing"/>
+ </presentation>
+ <presentation id="SearchBar">
+ <dropdownList refId="SearchBar" />
+ </presentation>
+ <presentation id="TrackingProtection">
+ <checkBox refId="TrackingProtectionLocked"> Не разрешать изменять настройки защиты от отслеживания. </checkBox>
+ <checkBox refId="Cryptomining"> Блокировать скрипты майнинга. </checkBox>
+ <checkBox refId="Fingerprinting"> Блокировать скрипты снятия отпечатков пальцев. </checkBox>
+ <text> Исключения: </text>
<listBox refId="TrackingProtection_Exceptions"/>
</presentation>
<presentation id="TrackingProtection_Exceptions">
<string id="Cookies_Locked_Explain">若启用此原则,用户将无法调整 Cookie 偏好设置。
若禁用或不设定此原则,则使用者能够自行调整 Cookie 偏好设定。 </string>
+ <string id="Cookies_Behavior">Cookie Behavior</string>
+ <string id="Cookies_Behavior_Explain">If this policy is enabled, you can configure cookie behavior.
+
+If this policy is not configured or disabled, cookies are rejected for known trackers.</string>
+ <string id="Cookies_BehaviorPrivateBrowsing">Cookie Behavior in private browsing</string>
+ <string id="Cookies_BehaviorPrivateBrowsing_Explain">If this policy is enabled, you can configure cookie behavior in private browsing.
+
+If this policy is not configured or disabled, in private browsing, cookies are rejected for known trackers and third-party cookies are partitioned.</string>
+ <string id="Cookies_Behavior_Accept">Accept all cookies</string>
+ <string id="Cookies_Behavior_RejectForeign">Reject third party cookies</string>
+ <string id="Cookies_Behavior_Reject">Reject all cookies</string>
+ <string id="Cookies_Behavior_LimitForeign">Reject third party cookies for sites you haven't visited</string>
+ <string id="Cookies_Behavior_RejectTracker">Reject cookies for known trackers</string>
+ <string id="Cookies_Behavior_RejectTrackerAndPartitionForeign">Reject cookies for known trackers and partition third-party cookies (Total Cookie Protection)</string>
<string id="Camera_Allow_Explain">若启用此原则,将允许指定来源网址访问摄像头。
若禁用或不设定此原则,则依循预设摄影机存取原则。 </string>
</presentation>
<presentation id="Permissions"><listBox refId="Permissions"/></presentation>
<presentation id="PopupsAllow"><listBox refId="PopupsAllowDesc">允许网站弹出窗口</listBox></presentation>
- <presentation id="Cookies_AcceptThirdParty">
-<dropdownList refId="Cookies_AcceptThirdParty"/>
- </presentation>
- <presentation id="SearchBar">
-<dropdownList refId="SearchBar"/>
- </presentation>
- <presentation id="TrackingProtection">
+<presentation id="Cookies_AcceptThirdParty">
+ <dropdownList refId="Cookies_AcceptThirdParty"/>
+ </presentation>
+<presentation id="Cookies_Behavior">
+ <dropdownList refId="Cookies_Behavior"/>
+</presentation>
+<presentation id="Cookies_BehaviorPrivateBrowsing">
+ <dropdownList refId="Cookies_BehaviorPrivateBrowsing"/>
+</presentation>
+ <presentation id="SearchBar">
+ <dropdownList refId="SearchBar"/>
+</presentation>
+ <presentation id="TrackingProtection">
<checkBox refId="TrackingProtectionLocked">不允许调整追踪保护偏好设置。 </checkBox>
<checkBox refId="Cryptomining">封锁加密货币采矿程序。 </checkBox>
<checkBox refId="Fingerprinting">封锁数位指纹追踪程序。 </checkBox>
<string id="Cookies_Locked_Explain">若啟用此原則,使用者將無法調整 Cookie 偏好設定。
若停用或不設定此原則,則使用者能夠自行調整 Cookie 偏好設定。</string>
+ <string id="Cookies_Behavior">Cookie Behavior</string>
+ <string id="Cookies_Behavior_Explain">If this policy is enabled, you can configure cookie behavior.
+
+If this policy is not configured or disabled, cookies are rejected for known trackers.</string>
+ <string id="Cookies_BehaviorPrivateBrowsing">Cookie Behavior in private browsing</string>
+ <string id="Cookies_BehaviorPrivateBrowsing_Explain">If this policy is enabled, you can configure cookie behavior in private browsing.
+
+If this policy is not configured or disabled, in private browsing, cookies are rejected for known trackers and third-party cookies are partitioned.</string>
+ <string id="Cookies_Behavior_Accept">Accept all cookies</string>
+ <string id="Cookies_Behavior_RejectForeign">Reject third party cookies</string>
+ <string id="Cookies_Behavior_Reject">Reject all cookies</string>
+ <string id="Cookies_Behavior_LimitForeign">Reject third party cookies for sites you haven't visited</string>
+ <string id="Cookies_Behavior_RejectTracker">Reject cookies for known trackers</string>
+ <string id="Cookies_Behavior_RejectTrackerAndPartitionForeign">Reject cookies for known trackers and partition third-party cookies (Total Cookie Protection)</string>
<string id="Camera_Allow_Explain">若啟用此原則,將允許指定來源網址存取攝影機。
若停用或不設定此原則,則依循預設攝影機存取原則。</string>
<presentation id="Cookies_AcceptThirdParty">
<dropdownList refId="Cookies_AcceptThirdParty"/>
</presentation>
+ <presentation id="Cookies_Behavior">
+ <dropdownList refId="Cookies_Behavior"/>
+ </presentation>
+ <presentation id="Cookies_BehaviorPrivateBrowsing">
+ <dropdownList refId="Cookies_BehaviorPrivateBrowsing"/>
+ </presentation>
<presentation id="SearchBar">
<dropdownList refId="SearchBar"/>
</presentation>