├── CODE_OF_CONDUCT.md ├── LICENSE ├── README.md ├── _config.yml ├── docs └── index.md ├── linux └── policies.json ├── mac ├── README.md └── org.mozilla.firefox.plist ├── update_version.cmd └── windows ├── de-DE ├── firefox.adml └── mozilla.adml ├── en-US ├── firefox.adml └── mozilla.adml ├── firefox.admx ├── fr-FR ├── firefox.adml └── mozilla.adml ├── mozilla.admx └── ru-RU ├── firefox.adml └── mozilla.adml /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- 1 | # Community Participation Guidelines 2 | 3 | This repository is governed by Mozilla's code of conduct and etiquette guidelines. 4 | For more details, please read the 5 | [Mozilla Community Participation Guidelines](https://www.mozilla.org/about/governance/policies/participation/). 6 | 7 | ## How to Report 8 | For more information on how to report violations of the Community Participation Guidelines, please read our '[How to Report](https://www.mozilla.org/about/governance/policies/participation/reporting/)' page. 9 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | Mozilla Public License Version 2.0 2 | ================================== 3 | 4 | 1. Definitions 5 | -------------- 6 | 7 | 1.1. "Contributor" 8 | means each individual or legal entity that creates, contributes to 9 | the creation of, or owns Covered Software. 10 | 11 | 1.2. "Contributor Version" 12 | means the combination of the Contributions of others (if any) used 13 | by a Contributor and that particular Contributor's Contribution. 14 | 15 | 1.3. "Contribution" 16 | means Covered Software of a particular Contributor. 17 | 18 | 1.4. "Covered Software" 19 | means Source Code Form to which the initial Contributor has attached 20 | the notice in Exhibit A, the Executable Form of such Source Code 21 | Form, and Modifications of such Source Code Form, in each case 22 | including portions thereof. 23 | 24 | 1.5. "Incompatible With Secondary Licenses" 25 | means 26 | 27 | (a) that the initial Contributor has attached the notice described 28 | in Exhibit B to the Covered Software; or 29 | 30 | (b) that the Covered Software was made available under the terms of 31 | version 1.1 or earlier of the License, but not also under the 32 | terms of a Secondary License. 33 | 34 | 1.6. "Executable Form" 35 | means any form of the work other than Source Code Form. 36 | 37 | 1.7. "Larger Work" 38 | means a work that combines Covered Software with other material, in 39 | a separate file or files, that is not Covered Software. 40 | 41 | 1.8. "License" 42 | means this document. 43 | 44 | 1.9. "Licensable" 45 | means having the right to grant, to the maximum extent possible, 46 | whether at the time of the initial grant or subsequently, any and 47 | all of the rights conveyed by this License. 48 | 49 | 1.10. "Modifications" 50 | means any of the following: 51 | 52 | (a) any file in Source Code Form that results from an addition to, 53 | deletion from, or modification of the contents of Covered 54 | Software; or 55 | 56 | (b) any new file in Source Code Form that contains any Covered 57 | Software. 58 | 59 | 1.11. "Patent Claims" of a Contributor 60 | means any patent claim(s), including without limitation, method, 61 | process, and apparatus claims, in any patent Licensable by such 62 | Contributor that would be infringed, but for the grant of the 63 | License, by the making, using, selling, offering for sale, having 64 | made, import, or transfer of either its Contributions or its 65 | Contributor Version. 66 | 67 | 1.12. "Secondary License" 68 | means either the GNU General Public License, Version 2.0, the GNU 69 | Lesser General Public License, Version 2.1, the GNU Affero General 70 | Public License, Version 3.0, or any later versions of those 71 | licenses. 72 | 73 | 1.13. "Source Code Form" 74 | means the form of the work preferred for making modifications. 75 | 76 | 1.14. "You" (or "Your") 77 | means an individual or a legal entity exercising rights under this 78 | License. For legal entities, "You" includes any entity that 79 | controls, is controlled by, or is under common control with You. For 80 | purposes of this definition, "control" means (a) the power, direct 81 | or indirect, to cause the direction or management of such entity, 82 | whether by contract or otherwise, or (b) ownership of more than 83 | fifty percent (50%) of the outstanding shares or beneficial 84 | ownership of such entity. 85 | 86 | 2. License Grants and Conditions 87 | -------------------------------- 88 | 89 | 2.1. Grants 90 | 91 | Each Contributor hereby grants You a world-wide, royalty-free, 92 | non-exclusive license: 93 | 94 | (a) under intellectual property rights (other than patent or trademark) 95 | Licensable by such Contributor to use, reproduce, make available, 96 | modify, display, perform, distribute, and otherwise exploit its 97 | Contributions, either on an unmodified basis, with Modifications, or 98 | as part of a Larger Work; and 99 | 100 | (b) under Patent Claims of such Contributor to make, use, sell, offer 101 | for sale, have made, import, and otherwise transfer either its 102 | Contributions or its Contributor Version. 103 | 104 | 2.2. Effective Date 105 | 106 | The licenses granted in Section 2.1 with respect to any Contribution 107 | become effective for each Contribution on the date the Contributor first 108 | distributes such Contribution. 109 | 110 | 2.3. Limitations on Grant Scope 111 | 112 | The licenses granted in this Section 2 are the only rights granted under 113 | this License. No additional rights or licenses will be implied from the 114 | distribution or licensing of Covered Software under this License. 115 | Notwithstanding Section 2.1(b) above, no patent license is granted by a 116 | Contributor: 117 | 118 | (a) for any code that a Contributor has removed from Covered Software; 119 | or 120 | 121 | (b) for infringements caused by: (i) Your and any other third party's 122 | modifications of Covered Software, or (ii) the combination of its 123 | Contributions with other software (except as part of its Contributor 124 | Version); or 125 | 126 | (c) under Patent Claims infringed by Covered Software in the absence of 127 | its Contributions. 128 | 129 | This License does not grant any rights in the trademarks, service marks, 130 | or logos of any Contributor (except as may be necessary to comply with 131 | the notice requirements in Section 3.4). 132 | 133 | 2.4. Subsequent Licenses 134 | 135 | No Contributor makes additional grants as a result of Your choice to 136 | distribute the Covered Software under a subsequent version of this 137 | License (see Section 10.2) or under the terms of a Secondary License (if 138 | permitted under the terms of Section 3.3). 139 | 140 | 2.5. Representation 141 | 142 | Each Contributor represents that the Contributor believes its 143 | Contributions are its original creation(s) or it has sufficient rights 144 | to grant the rights to its Contributions conveyed by this License. 145 | 146 | 2.6. Fair Use 147 | 148 | This License is not intended to limit any rights You have under 149 | applicable copyright doctrines of fair use, fair dealing, or other 150 | equivalents. 151 | 152 | 2.7. Conditions 153 | 154 | Sections 3.1, 3.2, 3.3, and 3.4 are conditions of the licenses granted 155 | in Section 2.1. 156 | 157 | 3. Responsibilities 158 | ------------------- 159 | 160 | 3.1. Distribution of Source Form 161 | 162 | All distribution of Covered Software in Source Code Form, including any 163 | Modifications that You create or to which You contribute, must be under 164 | the terms of this License. You must inform recipients that the Source 165 | Code Form of the Covered Software is governed by the terms of this 166 | License, and how they can obtain a copy of this License. You may not 167 | attempt to alter or restrict the recipients' rights in the Source Code 168 | Form. 169 | 170 | 3.2. Distribution of Executable Form 171 | 172 | If You distribute Covered Software in Executable Form then: 173 | 174 | (a) such Covered Software must also be made available in Source Code 175 | Form, as described in Section 3.1, and You must inform recipients of 176 | the Executable Form how they can obtain a copy of such Source Code 177 | Form by reasonable means in a timely manner, at a charge no more 178 | than the cost of distribution to the recipient; and 179 | 180 | (b) You may distribute such Executable Form under the terms of this 181 | License, or sublicense it under different terms, provided that the 182 | license for the Executable Form does not attempt to limit or alter 183 | the recipients' rights in the Source Code Form under this License. 184 | 185 | 3.3. Distribution of a Larger Work 186 | 187 | You may create and distribute a Larger Work under terms of Your choice, 188 | provided that You also comply with the requirements of this License for 189 | the Covered Software. If the Larger Work is a combination of Covered 190 | Software with a work governed by one or more Secondary Licenses, and the 191 | Covered Software is not Incompatible With Secondary Licenses, this 192 | License permits You to additionally distribute such Covered Software 193 | under the terms of such Secondary License(s), so that the recipient of 194 | the Larger Work may, at their option, further distribute the Covered 195 | Software under the terms of either this License or such Secondary 196 | License(s). 197 | 198 | 3.4. Notices 199 | 200 | You may not remove or alter the substance of any license notices 201 | (including copyright notices, patent notices, disclaimers of warranty, 202 | or limitations of liability) contained within the Source Code Form of 203 | the Covered Software, except that You may alter any license notices to 204 | the extent required to remedy known factual inaccuracies. 205 | 206 | 3.5. Application of Additional Terms 207 | 208 | You may choose to offer, and to charge a fee for, warranty, support, 209 | indemnity or liability obligations to one or more recipients of Covered 210 | Software. However, You may do so only on Your own behalf, and not on 211 | behalf of any Contributor. You must make it absolutely clear that any 212 | such warranty, support, indemnity, or liability obligation is offered by 213 | You alone, and You hereby agree to indemnify every Contributor for any 214 | liability incurred by such Contributor as a result of warranty, support, 215 | indemnity or liability terms You offer. You may include additional 216 | disclaimers of warranty and limitations of liability specific to any 217 | jurisdiction. 218 | 219 | 4. Inability to Comply Due to Statute or Regulation 220 | --------------------------------------------------- 221 | 222 | If it is impossible for You to comply with any of the terms of this 223 | License with respect to some or all of the Covered Software due to 224 | statute, judicial order, or regulation then You must: (a) comply with 225 | the terms of this License to the maximum extent possible; and (b) 226 | describe the limitations and the code they affect. Such description must 227 | be placed in a text file included with all distributions of the Covered 228 | Software under this License. Except to the extent prohibited by statute 229 | or regulation, such description must be sufficiently detailed for a 230 | recipient of ordinary skill to be able to understand it. 231 | 232 | 5. Termination 233 | -------------- 234 | 235 | 5.1. The rights granted under this License will terminate automatically 236 | if You fail to comply with any of its terms. However, if You become 237 | compliant, then the rights granted under this License from a particular 238 | Contributor are reinstated (a) provisionally, unless and until such 239 | Contributor explicitly and finally terminates Your grants, and (b) on an 240 | ongoing basis, if such Contributor fails to notify You of the 241 | non-compliance by some reasonable means prior to 60 days after You have 242 | come back into compliance. Moreover, Your grants from a particular 243 | Contributor are reinstated on an ongoing basis if such Contributor 244 | notifies You of the non-compliance by some reasonable means, this is the 245 | first time You have received notice of non-compliance with this License 246 | from such Contributor, and You become compliant prior to 30 days after 247 | Your receipt of the notice. 248 | 249 | 5.2. If You initiate litigation against any entity by asserting a patent 250 | infringement claim (excluding declaratory judgment actions, 251 | counter-claims, and cross-claims) alleging that a Contributor Version 252 | directly or indirectly infringes any patent, then the rights granted to 253 | You by any and all Contributors for the Covered Software under Section 254 | 2.1 of this License shall terminate. 255 | 256 | 5.3. In the event of termination under Sections 5.1 or 5.2 above, all 257 | end user license agreements (excluding distributors and resellers) which 258 | have been validly granted by You or Your distributors under this License 259 | prior to termination shall survive termination. 260 | 261 | ************************************************************************ 262 | * * 263 | * 6. Disclaimer of Warranty * 264 | * ------------------------- * 265 | * * 266 | * Covered Software is provided under this License on an "as is" * 267 | * basis, without warranty of any kind, either expressed, implied, or * 268 | * statutory, including, without limitation, warranties that the * 269 | * Covered Software is free of defects, merchantable, fit for a * 270 | * particular purpose or non-infringing. The entire risk as to the * 271 | * quality and performance of the Covered Software is with You. * 272 | * Should any Covered Software prove defective in any respect, You * 273 | * (not any Contributor) assume the cost of any necessary servicing, * 274 | * repair, or correction. This disclaimer of warranty constitutes an * 275 | * essential part of this License. No use of any Covered Software is * 276 | * authorized under this License except under this disclaimer. * 277 | * * 278 | ************************************************************************ 279 | 280 | ************************************************************************ 281 | * * 282 | * 7. Limitation of Liability * 283 | * -------------------------- * 284 | * * 285 | * Under no circumstances and under no legal theory, whether tort * 286 | * (including negligence), contract, or otherwise, shall any * 287 | * Contributor, or anyone who distributes Covered Software as * 288 | * permitted above, be liable to You for any direct, indirect, * 289 | * special, incidental, or consequential damages of any character * 290 | * including, without limitation, damages for lost profits, loss of * 291 | * goodwill, work stoppage, computer failure or malfunction, or any * 292 | * and all other commercial damages or losses, even if such party * 293 | * shall have been informed of the possibility of such damages. This * 294 | * limitation of liability shall not apply to liability for death or * 295 | * personal injury resulting from such party's negligence to the * 296 | * extent applicable law prohibits such limitation. Some * 297 | * jurisdictions do not allow the exclusion or limitation of * 298 | * incidental or consequential damages, so this exclusion and * 299 | * limitation may not apply to You. * 300 | * * 301 | ************************************************************************ 302 | 303 | 8. Litigation 304 | ------------- 305 | 306 | Any litigation relating to this License may be brought only in the 307 | courts of a jurisdiction where the defendant maintains its principal 308 | place of business and such litigation shall be governed by laws of that 309 | jurisdiction, without reference to its conflict-of-law provisions. 310 | Nothing in this Section shall prevent a party's ability to bring 311 | cross-claims or counter-claims. 312 | 313 | 9. Miscellaneous 314 | ---------------- 315 | 316 | This License represents the complete agreement concerning the subject 317 | matter hereof. If any provision of this License is held to be 318 | unenforceable, such provision shall be reformed only to the extent 319 | necessary to make it enforceable. Any law or regulation which provides 320 | that the language of a contract shall be construed against the drafter 321 | shall not be used to construe this License against a Contributor. 322 | 323 | 10. Versions of the License 324 | --------------------------- 325 | 326 | 10.1. New Versions 327 | 328 | Mozilla Foundation is the license steward. Except as provided in Section 329 | 10.3, no one other than the license steward has the right to modify or 330 | publish new versions of this License. Each version will be given a 331 | distinguishing version number. 332 | 333 | 10.2. Effect of New Versions 334 | 335 | You may distribute the Covered Software under the terms of the version 336 | of the License under which You originally received the Covered Software, 337 | or under the terms of any subsequent version published by the license 338 | steward. 339 | 340 | 10.3. Modified Versions 341 | 342 | If you create software not governed by this License, and you want to 343 | create a new license for such software, you may create and use a 344 | modified version of this License if you rename the license and remove 345 | any references to the name of the license steward (except to note that 346 | such modified license differs from this License). 347 | 348 | 10.4. Distributing Source Code Form that is Incompatible With Secondary 349 | Licenses 350 | 351 | If You choose to distribute Source Code Form that is Incompatible With 352 | Secondary Licenses under the terms of this version of the License, the 353 | notice described in Exhibit B of this License must be attached. 354 | 355 | Exhibit A - Source Code Form License Notice 356 | ------------------------------------------- 357 | 358 | This Source Code Form is subject to the terms of the Mozilla Public 359 | License, v. 2.0. If a copy of the MPL was not distributed with this 360 | file, You can obtain one at http://mozilla.org/MPL/2.0/. 361 | 362 | If it is not possible or desirable to put the notice in a particular 363 | file, then You may include the notice in a location (such as a LICENSE 364 | file in a relevant directory) where a recipient would be likely to look 365 | for such a notice. 366 | 367 | You may add additional accurate notices of copyright ownership. 368 | 369 | Exhibit B - "Incompatible With Secondary Licenses" Notice 370 | --------------------------------------------------------- 371 | 372 | This Source Code Form is "Incompatible With Secondary Licenses", as 373 | defined by the Mozilla Public License, v. 2.0. 374 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | **These policies are in active development and so might contain changes that do not work with current versions of Firefox.** 2 | 3 | **You should use the [officially released versions](https://github.com/mozilla/policy-templates/releases) if you are deploying changes.** 4 | 5 | Official policy documentation has been moved to https://mozilla.github.io/policy-templates/. -------------------------------------------------------------------------------- /_config.yml: -------------------------------------------------------------------------------- 1 | theme: jekyll-theme-cayman 2 | markdown: GFM -------------------------------------------------------------------------------- /linux/policies.json: -------------------------------------------------------------------------------- 1 | { 2 | "policies": { 3 | "AllowedDomainsForApps": "managedfirefox.com,example.com", 4 | "AppAutoUpdate": true | false, 5 | "AppUpdatePin": "106.", 6 | "AppUpdateURL": "https://yoursite.com", 7 | "Authentication": { 8 | "SPNEGO": ["mydomain.com", "https://myotherdomain.com"], 9 | "Delegated": ["mydomain.com", "https://myotherdomain.com"], 10 | "NTLM": ["mydomain.com", "https://myotherdomain.com"], 11 | "AllowNonFQDN": { 12 | "SPNEGO": true | false, 13 | "NTLM": true | false 14 | }, 15 | "AllowProxies": { 16 | "SPNEGO": true | false, 17 | "NTLM": true | false 18 | }, 19 | "Locked": true | false, 20 | "PrivateBrowsing": true | false 21 | }, 22 | "AutoLaunchProtocolsFromOrigins": [{ 23 | "protocol": "zoommtg", 24 | "allowed_origins": [ 25 | "https://somesite.zoom.us" 26 | ] 27 | }], 28 | "BackgroundAppUpdate": true | false, 29 | "BlockAboutAddons": true | false, 30 | "BlockAboutConfig": true | false, 31 | "BlockAboutProfiles": true | false, 32 | "BlockAboutSupport": true | false, 33 | "Bookmarks": [ 34 | { 35 | "Title": "Example", 36 | "URL": "https://example.com", 37 | "Favicon": "https://example.com/favicon.ico", 38 | "Placement": "toolbar" | "menu", 39 | "Folder": "FolderName" 40 | } 41 | ], 42 | "CaptivePortal": true | false, 43 | "Certificates": { 44 | "Install": ["cert1.der", "/home/username/cert2.pem"], 45 | }, 46 | "Containers": { 47 | "Default": [ 48 | { 49 | "name": "My container", 50 | "icon": "pet", 51 | "color": "turquoise" 52 | } 53 | ] 54 | }, 55 | "Cookies": { 56 | "Allow": ["http://example.org/"], 57 | "AllowSession": ["http://example.edu/"], 58 | "Block": ["http://example.edu/"], 59 | "Locked": true | false, 60 | "Behavior": "accept" | "reject-foreign" | "reject" | "limit-foreign" | "reject-tracker" | "reject-tracker-and-partition-foreign", 61 | "BehaviorPrivateBrowsing": "accept" | "reject-foreign" | "reject" | "limit-foreign" | "reject-tracker" | "reject-tracker-and-partition-foreign", 62 | }, 63 | "DefaultDownloadDirectory": "${home}/Downloads", 64 | "DisableBuiltinPDFViewer": true | false, 65 | "DisabledCiphers": { 66 | "CIPHER_NAME": true | false, 67 | }, 68 | "DisableDeveloperTools": true | false, 69 | "DisableEncryptedClientHello": true | false, 70 | "DisableFeedbackCommands": true | false, 71 | "DisableFirefoxAccounts": true | false, 72 | "DisableFirefoxScreenshots": true | false, 73 | "DisableFirefoxStudies": true | false, 74 | "DisableForgetButton": true | false, 75 | "DisableFormHistory": true | false, 76 | "DisableMasterPasswordCreation": true | false, 77 | "DisablePasswordReveal": true | false, 78 | "DisablePrivateBrowsing": true | false, 79 | "DisableProfileImport": true | false, 80 | "DisableProfileRefresh": true | false, 81 | "DisableSafeMode": true | false, 82 | "DisableSecurityBypass": { 83 | "InvalidCertificate": true | false, 84 | "SafeBrowsing": true | false 85 | }, 86 | "DisableSetDesktopBackground": true | false, 87 | "DisableSystemAddonUpdate": true | false, 88 | "DisableTelemetry": true | false, 89 | "DisplayBookmarksToolbar": "always" | "never" | "newtab", 90 | "DisplayMenuBar": "always", "never", "default-on", "default-off", 91 | "DNSOverHTTPS": { 92 | "Enabled": true | false, 93 | "ProviderURL": "URL_TO_ALTERNATE_PROVIDER", 94 | "Locked": true | false, 95 | "ExcludedDomains": ["example.com"] 96 | }, 97 | "DontCheckDefaultBrowser": true | false, 98 | "DownloadDirectory": "${home}/Downloads", 99 | "EnableTrackingProtection": { 100 | "Value": true | false, 101 | "Locked": true | false, 102 | "Cryptomining": true | false, 103 | "Fingerprinting": true | false, 104 | "EmailTracking": true | false, 105 | "SuspectedFingerprinting": true | false, 106 | "Category": "strict" | "standard", 107 | "Exceptions": ["https://example.com"] 108 | }, 109 | "EncryptedMediaExtensions": { 110 | "Enabled": true | false, 111 | "Locked": true | false 112 | }, 113 | "ExemptDomainFileTypePairsFromFileTypeDownloadWarnings": [{ 114 | "file_extension": "jnlp", 115 | "domains": ["example.com"] 116 | }], 117 | "Extensions": { 118 | "Install": ["https://addons.mozilla.org/firefox/downloads/somefile.xpi", "//path/to/xpi"], 119 | "Uninstall": ["bad_addon_id@mozilla.org"], 120 | "Locked": ["addon_id@mozilla.org"] 121 | }, 122 | "ExtensionSettings": { 123 | "*": { 124 | "blocked_install_message": "Custom error message.", 125 | "install_sources": ["https://yourwebsite.com/*"], 126 | "installation_mode": "blocked", 127 | "allowed_types": ["extension"] 128 | }, 129 | "uBlock0@raymondhill.net": { 130 | "installation_mode": "force_installed", 131 | "install_url": "https://addons.mozilla.org/firefox/downloads/latest/ublock-origin/latest.xpi" 132 | }, 133 | "https-everywhere@eff.org": { 134 | "installation_mode": "allowed" 135 | } 136 | }, 137 | "ExtensionUpdate": true | false, 138 | "FirefoxHome": { 139 | "Search": true | false, 140 | "TopSites": true | false, 141 | "SponsoredTopSites": true | false, 142 | "Highlights": true | false, 143 | "Pocket": true | false, 144 | "SponsoredPocket": true | false, 145 | "Snippets": true | false, 146 | "Locked": true | false 147 | }, 148 | "FirefoxSuggest": { 149 | "WebSuggestions": true | false, 150 | "SponsoredSuggestions": true | false, 151 | "ImproveSuggest": true | false, 152 | "Locked": true | false 153 | }, 154 | "GenerativeAI": { 155 | "Chatbot": true | false, 156 | "LinkPreviews": true | false, 157 | "TabGroups": true | false, 158 | "Locked": true | false 159 | }, 160 | "GoToIntranetSiteForSingleWordEntryInAddressBar": true | false, 161 | "Handlers": { 162 | "mimeTypes": { 163 | "application/msword": { 164 | "action": "useSystemDefault", 165 | "ask": false 166 | } 167 | }, 168 | "schemes": { 169 | "mailto": { 170 | "action": "useHelperApp", 171 | "ask": true | false, 172 | "handlers": [{ 173 | "name": "Gmail", 174 | "uriTemplate": "https://mail.google.com/mail/?extsrc=mailto&url=%s" 175 | }] 176 | } 177 | }, 178 | "extensions": { 179 | "pdf": { 180 | "action": "useHelperApp", 181 | "ask": true | false, 182 | "handlers": [{ 183 | "name": "Adobe Acrobat", 184 | "path": "/usr/bin/acroread" 185 | }] 186 | } 187 | } 188 | }, 189 | "HardwareAcceleration": true | false, 190 | "Homepage": { 191 | "URL": "http://example.com/", 192 | "Locked": true | false, 193 | "Additional": ["http://example.org/", 194 | "http://example.edu/"], 195 | "StartPage": "none" | "homepage" | "previous-session" | "homepage-locked" 196 | }, 197 | "HttpAllowlist": ["http://example.org", 198 | "http://example.edu"], 199 | "HttpsOnlyMode": "allowed" | "disallowed" | "enabled" | "force_enabled", 200 | "InstallAddonsPermission": { 201 | "Allow": ["http://example.org/", 202 | "http://example.edu/"], 203 | "Default": true | false 204 | }, 205 | "LegacySameSiteCookieBehaviorEnabled": true | false, 206 | "LegacySameSiteCookieBehaviorEnabledForDomainList": ["example.org", "example.edu"], 207 | "LocalFileLinks": ["http://example.org/", "http://example.edu/"], 208 | "ManagedBookmarks": [ 209 | { 210 | "toplevel_name": "My managed bookmarks folder" 211 | }, 212 | { 213 | "url": "example.com", 214 | "name": "Example" 215 | }, 216 | { 217 | "name": "Mozilla links", 218 | "children": [ 219 | { 220 | "url": "https://mozilla.org", 221 | "name": "Mozilla.org" 222 | }, 223 | { 224 | "url": "https://support.mozilla.org/", 225 | "name": "SUMO" 226 | } 227 | ] 228 | } 229 | ], 230 | "NetworkPrediction": true | false, 231 | "NewTabPage": true | false, 232 | "NoDefaultBookmarks": true | false, 233 | "OfferToSaveLogins": true | false, 234 | "OfferToSaveLoginsDefault": true | false, 235 | "OverrideFirstRunPage": "http://example.org", 236 | "OverridePostUpdatePage": "http://example.org", 237 | "PasswordManagerEnabled": true | false, 238 | "PasswordManagerExceptions": ["https://example.org", "https://example.edu"], 239 | "PDFjs": { 240 | "Enabled": true | false, 241 | "EnablePermissions": true | false 242 | }, 243 | "Permissions": { 244 | "Camera": { 245 | "Allow": ["https://example.org","https://example.org:1234"], 246 | "Block": ["https://example.edu"], 247 | "BlockNewRequests": true | false, 248 | "Locked": true | false 249 | }, 250 | "Microphone": { 251 | "Allow": ["https://example.org"], 252 | "Block": ["https://example.edu"], 253 | "BlockNewRequests": true | false, 254 | "Locked": true | false 255 | }, 256 | "Location": { 257 | "Allow": ["https://example.org"], 258 | "Block": ["https://example.edu"], 259 | "BlockNewRequests": true | false, 260 | "Locked": true | false 261 | }, 262 | "Notifications": { 263 | "Allow": ["https://example.org"], 264 | "Block": ["https://example.edu"], 265 | "BlockNewRequests": true | false, 266 | "Locked": true | false 267 | }, 268 | "Autoplay": { 269 | "Allow": ["https://example.org"], 270 | "Block": ["https://example.edu"], 271 | "Default": "allow-audio-video" | "block-audio" | "block-audio-video", 272 | "Locked": true | false 273 | }, 274 | "VirtualReality": { 275 | "Allow": ["https://example.org"], 276 | "Block": ["https://example.edu"], 277 | "BlockNewRequests": true | false, 278 | "Locked": true | false 279 | }, 280 | "ScreenShare": { 281 | "Allow": ["https://example.org"], 282 | "Block": ["https://example.edu"], 283 | "BlockNewRequests": true | false, 284 | "Locked": true | false 285 | }, 286 | }, 287 | "PictureInPicture": { 288 | "Enabled": true | false, 289 | "Locked": true | false 290 | }, 291 | "PopupBlocking": { 292 | "Allow": ["http://example.org/", 293 | "http://example.edu/"], 294 | "Default": true | false, 295 | "Locked": true | false 296 | }, 297 | "PostQuantumKeyAgreementEnabled": true | false, 298 | "Preferences": { 299 | "accessibility.force_disabled": { 300 | "Value": 1, 301 | "Status": "default" 302 | }, 303 | "browser.cache.disk.parent_directory": { 304 | "Value": "SOME_NATIVE_PATH", 305 | "Status": "user" 306 | }, 307 | "browser.tabs.warnOnClose": { 308 | "Value": false, 309 | "Status": "locked" 310 | } 311 | }, 312 | "PrimaryPassword": true | false, 313 | "PrintingEnabled": true | false, 314 | "PrivateBrowsingModeAvailability": 0 | 1 | 2, 315 | "PromptForDownloadLocation": true | false, 316 | "Proxy": { 317 | "Mode": "none" | "system" | "manual" | "autoDetect" | "autoConfig", 318 | "Locked": true | false, 319 | "HTTPProxy": "hostname", 320 | "UseHTTPProxyForAllProtocols": true | false, 321 | "SSLProxy": "hostname", 322 | "FTPProxy": "hostname", 323 | "SOCKSProxy": "hostname", 324 | "SOCKSVersion": 4 | 5, 325 | "Passthrough": "", 326 | "AutoConfigURL": "URL_TO_AUTOCONFIG", 327 | "AutoLogin": true | false, 328 | "UseProxyForDNS": true | false 329 | }, 330 | "RequestedLocales": "de,en-US", 331 | "SanitizeOnShutdown": { 332 | "Cache": true | false, 333 | "Cookies": true | false, 334 | "History": true | false, 335 | "Sessions": true | false, 336 | "SiteSettings": true | false, 337 | "Locked": true | false 338 | }, 339 | "SearchEngines": { 340 | "Add": [ 341 | { 342 | "Name": "Example1", 343 | "URLTemplate": "https://www.example.org/q={searchTerms}", 344 | "Method": "GET" | "POST", 345 | "IconURL": "https://www.example.org/favicon.ico", 346 | "Alias": "example", 347 | "Description": "Description", 348 | "PostData": "name=value&q={searchTerms}", 349 | "SuggestURLTemplate": "https://www.example.org/suggestions/q={searchTerms}" 350 | } 351 | ], 352 | "Default": "NAME_OF_SEARCH_ENGINE", 353 | "PreventInstalls": true | false, 354 | "Remove": ["NAME_OF_SEARCH_ENGINE"] 355 | }, 356 | "SearchSuggestEnabled": true | false, 357 | "SecurityDevices": { 358 | "NAME_OF_DEVICE": "PATH_TO_LIBRARY_FOR_DEVICE" 359 | }, 360 | "ShowHomeButton": true | false, 361 | "SkipTermsOfUse": true | false, 362 | "SSLVersionMax": "tls1" | "tls1.1" | "tls1.2" | "tls1.3", 363 | "SSLVersionMin": "tls1" | "tls1.1" | "tls1.2" | "tls1.3", 364 | "SupportMenu": { 365 | "Title": "Support Menu", 366 | "URL": "http://example.com/support", 367 | "AccessKey": "S" 368 | }, 369 | "StartDownloadsInTempDirectory": true | false, 370 | "TranslateEnabled": true | false, 371 | "UserMessaging": { 372 | "ExtensionRecommendations": true | false, 373 | "FeatureRecommendations": true | false, 374 | "UrlbarInterventions": true | false, 375 | "SkipOnboarding": true | false, 376 | "MoreFromMozilla": true | false, 377 | "FirefoxLabs": true | false, 378 | "Locked": true | false 379 | }, 380 | "UseSystemPrintDialog": true | false., 381 | "VisualSearchEnabled": true | false., 382 | "WebsiteFilter": { 383 | "Block": [""], 384 | "Exceptions": ["http://example.org/*"] 385 | } 386 | } 387 | } -------------------------------------------------------------------------------- /mac/README.md: -------------------------------------------------------------------------------- 1 | **IMPORTANT**: To use enterprise policies on macOS, you must set the `EnterprisePoliciesEnabled` policy. 2 | 3 | An example plist file with all options is available here: 4 | 5 | https://github.com/mozilla/policy-templates/blob/master/mac/org.mozilla.firefox.plist 6 | 7 | This plist file is NOT a mobileconfig. It is intended to be input to a tool like Apple Configurator, Profile Manager, Jamf Pro or Intune. For my testing, I use https://github.com/timsutton/mcxToProfile. 8 | 9 | In particular, in a mobileconfig, the configuraton must be nested in ```mcx_preference_settings``. 10 | 11 | If you want to set specific options from the command line, we also provide flattened shortcuts to any item that is nested in the plist file. 12 | 13 | For example, this policy: 14 | ```json 15 | { 16 | "policies": { 17 | "Homepage": { 18 | "URL": "http://example.com/" 19 | } 20 | } 21 | } 22 | ``` 23 | which would be set in the plist file like this: 24 | ```xml 25 | Homepage 26 | 27 | URL 28 | http://example.com 29 | 30 | ``` 31 | Correctly writing the nested value with the `defaults` command can be hard, so you can flatten the keys by separating them with `__`, like this: 32 | ```bash 33 | sudo defaults write /Library/Preferences/org.mozilla.firefox Homepage__URL -string "http://example.com" 34 | ``` 35 | Before any command line policies will work, you need to enable policies like this: 36 | ```bash 37 | sudo defaults write /Library/Preferences/org.mozilla.firefox EnterprisePoliciesEnabled -bool TRUE 38 | ``` 39 | If you want to set user specific policies, use ~/Library without sudo: 40 | ```bash 41 | defaults write ~/Library/Preferences/org.mozilla.firefox EnterprisePoliciesEnabled -bool TRUE 42 | defaults write ~/Library/Preferences/org.mozilla.firefox Homepage__URL -string "http://example.com" 43 | ``` 44 | If you find that Firefox is not using your updates immediately, you can run: 45 | ```bash 46 | sudo defaults read /Library/Preferences/org.mozilla.firefox 47 | ``` 48 | -------------------------------------------------------------------------------- /mac/org.mozilla.firefox.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | EnterprisePoliciesEnabled 6 | 7 | AllowedDomainsForApps 8 | managedfirefox.com,example.com 9 | AppAutoUpdate 10 | 11 | AppUpdatePin 12 | 106. 13 | AppUpdateURL 14 | https://www.example.com/update.xml 15 | Authentication 16 | 17 | SPNEGO 18 | 19 | mydomain.com 20 | https://myotherdomain.com 21 | 22 | Delegated 23 | 24 | mydomain.com 25 | https://myotherdomain.com 26 | 27 | NTLM 28 | 29 | mydomain.com 30 | https://myotherdomain.com 31 | 32 | AllowNonFQDN 33 | 34 | SPNEGO 35 | 36 | NTLM 37 | 38 | 39 | AllowProxies 40 | 41 | SPNEGO 42 | 43 | NTLM 44 | 45 | 46 | PrivateBrowsing 47 | 48 | Locked 49 | 50 | 51 | AutoLaunchProtocolsFromOrigins 52 | 53 | 54 | protocol 55 | zoommtg 56 | allowed_origins 57 | 58 | https://somesite.zoom.us 59 | 60 | 61 | 62 | BlockAboutAddons 63 | 64 | BlockAboutConfig 65 | 66 | BlockAboutProfiles 67 | 68 | BlockAboutSupport 69 | 70 | Bookmarks 71 | 72 | 73 | Title 74 | Example1 75 | URL 76 | https://www.example.org 77 | Favicon 78 | https://www.example.org/favicon.ico 79 | Placement 80 | toolbar 81 | Folder 82 | Example1Folder 83 | 84 | 85 | Title 86 | Example2 87 | URL 88 | https://www.example.com 89 | Favicon 90 | https://www.example.com/favicon.ico 91 | Placement 92 | menu 93 | Folder 94 | Example2Folder 95 | 96 | 97 | CaptivePortal 98 | 99 | Certificates 100 | 101 | ImportEnterpriseRoots 102 | 103 | Install 104 | 105 | cert1.der 106 | cert2.pem 107 | 108 | 109 | Default 110 | 111 | Containers 112 | 113 | 114 | name 115 | My container 116 | icon 117 | pet 118 | color 119 | turquoise 120 | 121 | 122 | 123 | Cookies 124 | 125 | Allow 126 | 127 | https://www.example.org/ 128 | 129 | Allowsession 130 | 131 | https://www.example.edu/ 132 | 133 | Block 134 | 135 | https://www.example.edu/ 136 | 137 | Behavior 138 | limit-foreign 139 | Locked 140 | 141 | 142 | DefaultDownloadDirectory 143 | ${home}/Downloads 144 | DownloadDirectory 145 | ${home}/Downloads 146 | DNSOverHTTPS 147 | 148 | Enabled 149 | 150 | ProviderURL 151 | URL_TO_ALTERNATE_PROVIDER 152 | Locked 153 | 154 | ExcludedDomains 155 | 156 | example.com 157 | 158 | 159 | DisableAppUpdate 160 | 161 | DisableBuiltinPDFViewer 162 | 163 | DisabledCiphers 164 | 165 | TLS_DHE_RSA_WITH_AES_128_CBC_SHA 166 | 167 | TLS_DHE_RSA_WITH_AES_256_CBC_SHA 168 | 169 | TLS_ECDHE_RSA_WITH_AES_128_CBC_SHA 170 | 171 | TLS_ECDHE_RSA_WITH_AES_256_CBC_SHA 172 | 173 | TLS_ECDHE_RSA_WITH_AES_128_GCM_SHA256 174 | 175 | TLS_ECDHE_ECDSA_WITH_AES_128_GCM_SHA256 176 | 177 | TLS_RSA_WITH_AES_128_CBC_SHA 178 | 179 | TLS_RSA_WITH_AES_256_CBC_SHA 180 | 181 | TLS_RSA_WITH_3DES_EDE_CBC_SHA 182 | 183 | TLS_RSA_WITH_AES_128_GCM_SHA256 184 | 185 | TLS_RSA_WITH_AES_256_GCM_SHA384 186 | 187 | 188 | DisableDeveloperTools 189 | 190 | DisableEncryptedClientHello 191 | 192 | DisableFeedbackCommands 193 | 194 | DisableFirefoxAccounts 195 | 196 | DisableFirefoxScreenshots 197 | 198 | DisableFirefoxStudies 199 | 200 | DisableForgetButton 201 | 202 | DisableFormHistory 203 | 204 | DisableMasterPasswordCreation 205 | 206 | DisablePasswordReveal 207 | 208 | DisablePrivateBrowsing 209 | 210 | DisableProfileImport 211 | 212 | DisableProfileRefresh 213 | 214 | DisableSafeMode 215 | 216 | DisableSecurityBypass 217 | 218 | InvalidCertificate 219 | 220 | SafeBrowsing 221 | 222 | 223 | DisableSetDesktopBackground 224 | 225 | DisableSystemAddonUpdate 226 | 227 | DisableTelemetry 228 | 229 | DisplayBookmarksToolbar 230 | 231 | DontCheckDefaultBrowser 232 | 233 | EnableTrackingProtection 234 | 235 | Value 236 | 237 | Locked 238 | 239 | Cryptomining 240 | 241 | Fingerprinting 242 | 243 | EmailTracking 244 | 245 | SuspectedFingerprinting 246 | 247 | Category 248 | strict 249 | Exceptions 250 | 251 | https://example.com 252 | 253 | 254 | EncryptedMediaExtensions 255 | 256 | Enabled 257 | 258 | Locked 259 | 260 | 261 | ExemptDomainFileTypePairsFromFileTypeDownloadWarnings 262 | 263 | 264 | file_extension 265 | jnlp 266 | domains 267 | 268 | example.com 269 | 270 | 271 | 272 | Extensions 273 | 274 | Install 275 | 276 | https://addons.mozilla.org/firefox/downloads/file/1053714/ghostery_privacy_ad_blocker-8.2.4-an+fx.xpi 277 | 278 | Uninstall 279 | 280 | Locked 281 | 282 | firefox@ghostery.com 283 | 284 | 285 | ExtensionSettings 286 | 287 | * 288 | 289 | blocked_install_message 290 | Custom error message. 291 | install_sources 292 | 293 | https://addons.mozilla.org/ 294 | 295 | installation_mode 296 | blocked 297 | 298 | uBlock0@raymondhill.net 299 | 300 | installation_mode 301 | force_installed 302 | install_url 303 | https://addons.mozilla.org/firefox/downloads/latest/ublock-origin/latest.xpi 304 | 305 | 306 | ExtensionUpdate 307 | 308 | FirefoxHome 309 | 310 | Search 311 | 312 | TopSites 313 | 314 | SponsoredTopSites 315 | 316 | Highlights 317 | 318 | Pocket 319 | 320 | SponsoredPocket 321 | 322 | Snippets 323 | 324 | Locked 325 | 326 | 327 | FirefoxHome 328 | 329 | WebSuggestions 330 | 331 | SponsoredSuggestions 332 | 333 | ImproveSuggest 334 | 335 | Locked 336 | 337 | 338 | GenerativeAI 339 | 340 | Chatbot 341 | 342 | LinkPreviews 343 | 344 | TabGroups 345 | 346 | Locked 347 | 348 | 349 | GoToIntranetSiteForSingleWordEntryInAddressBar 350 | 351 | Handlers 352 | 353 | mimeTypes 354 | 355 | application/msword 356 | 357 | action 358 | useSystemDefault 359 | ask 360 | 361 | 362 | 363 | schemes 364 | 365 | mailto 366 | 367 | action 368 | useHelperApp 369 | ask 370 | 371 | handlers 372 | 373 | 374 | name 375 | Gmail 376 | uriTemplate 377 | https://mail.google.com/mail/?extsrc=mailto&url=%s 378 | 379 | 380 | 381 | 382 | extensions 383 | 384 | pdf 385 | 386 | action 387 | useHelperApp 388 | ask 389 | 390 | handlers 391 | 392 | 393 | name 394 | Adobe Acrobat 395 | path 396 | /System/Applications/Preview.app 397 | 398 | 399 | 400 | 401 | 402 | HardwareAcceleration 403 | 404 | Homepage 405 | 406 | URL 407 | http://example.com 408 | Locked 409 | 410 | Additional 411 | 412 | https://www.example.com/extra-home1.htm 413 | https://www.example.com/extra-home2.htm 414 | https://www.example.com/extra-home3.htm 415 | 416 | StartPage 417 | homepage 418 | 419 | HttpAllowlist 420 | 421 | http://example.org 422 | http://example.edu 423 | 424 | HttpsOnlyMode 425 | disallowed 426 | InstallAddonsPermission 427 | 428 | Allow 429 | 430 | https://example.org 431 | https://example.edu 432 | 433 | Default 434 | 435 | 436 | LocalFileLinks 437 | 438 | http://example.org 439 | http://example.edu 440 | 441 | PrimaryPassword 442 | 443 | MicrosoftEntraSSO 444 | 445 | NetworkPrediction 446 | 447 | NewTabPage 448 | 449 | NoDefaultBookmarks 450 | 451 | OfferToSaveLogins 452 | 453 | OfferToSaveLoginsDefault 454 | 455 | OverrideFirstRunPage 456 | https://www.example.com 457 | OverridePostUpdatePage 458 | 459 | PasswordManagerEnabled 460 | 461 | PDFjs 462 | 463 | Enabled 464 | 465 | EnablePermissions 466 | 467 | 468 | PasswordManagerExceptions 469 | 470 | https://example.org 471 | https://example.edu 472 | 473 | Permissions 474 | 475 | Camera 476 | 477 | Allow 478 | 479 | https://example.org 480 | 481 | Block 482 | 483 | https://example.edu 484 | 485 | BlockNewRequests 486 | 487 | Locked 488 | 489 | 490 | Microphone 491 | 492 | Allow 493 | 494 | https://example.org 495 | 496 | Block 497 | 498 | https://example.edu 499 | 500 | BlockNewRequests 501 | 502 | Locked 503 | 504 | 505 | Location 506 | 507 | Allow 508 | 509 | https://example.org 510 | 511 | Block 512 | 513 | https://example.edu 514 | 515 | BlockNewRequests 516 | 517 | Locked 518 | 519 | 520 | Notifications 521 | 522 | Allow 523 | 524 | https://example.org 525 | 526 | Block 527 | 528 | https://example.edu 529 | 530 | BlockNewRequests 531 | 532 | Locked 533 | 534 | 535 | Autoplay 536 | 537 | Allow 538 | 539 | https://example.org 540 | 541 | Block 542 | 543 | https://example.edu 544 | 545 | Default 546 | block-audio 547 | Locked 548 | 549 | 550 | VirtualReality 551 | 552 | Allow 553 | 554 | https://example.org 555 | 556 | Block 557 | 558 | https://example.edu 559 | 560 | BlockNewRequests 561 | 562 | Locked 563 | 564 | 565 | ScreenShare 566 | 567 | Allow 568 | 569 | https://example.org 570 | 571 | Block 572 | 573 | https://example.edu 574 | 575 | BlockNewRequests 576 | 577 | Locked 578 | 579 | 580 | 581 | PictureInPicture 582 | 583 | Enabled 584 | 585 | Locked 586 | 587 | 588 | PopupBlocking 589 | 590 | Allow 591 | 592 | https://www.example.org 593 | https://www.example.edu 594 | 595 | Default 596 | 597 | Locked 598 | 599 | 600 | PostQuantumKeyAgreementEnabled 601 | 602 | Preferences 603 | 604 | accessibility.force_disabled 605 | 606 | Value 607 | 1 608 | Status 609 | default 610 | 611 | browser.cache.disk.parent_directory 612 | 613 | Value 614 | SOME_NATIVE_PATH 615 | Status 616 | user 617 | 618 | browser.tabs.warnOnClose 619 | 620 | Value 621 | 622 | Status 623 | locked 624 | 625 | 626 | PrintingEnabled 627 | 628 | PrivateBrowsingModeAvailability 629 | 1 630 | Proxy 631 | 632 | Mode 633 | manual 634 | HTTPProxy 635 | proxy.example.com:80 636 | UseHTTPProxyForAllProtocols 637 | 638 | SSLProxy 639 | proxy.example.com:80 640 | FTPProxy 641 | proxy.example.com:80 642 | SOCKSProxy 643 | proxy.example.com:80 644 | SocksVersion 645 | 4 646 | Passthrough 647 | <local> 648 | AutoConfigURL 649 | URL_TO_AUTOCONFIG 650 | AutoLogin 651 | 652 | UseProxyForDNS 653 | 654 | Locked 655 | 656 | 657 | RequestedLocales 658 | 659 | de 660 | en-US 661 | 662 | SanitizeOnShutdown 663 | 664 | Cache 665 | 666 | Cookies 667 | 668 | History 669 | 670 | Sessions 671 | 672 | SiteSettings 673 | 674 | Locked 675 | 676 | 677 | SearchBar 678 | separate 679 | SecurityDevices 680 | 681 | NAME_OF_DEVICE 682 | PATH_TO_LIBRARY_FOR_DEVICE 683 | 684 | ShowHomeButton 685 | 686 | SkipTermsOfUse 687 | 688 | SSLVersionMin 689 | tls1.2 690 | SSLVersionMax 691 | tls1.3 692 | StartDownloadsInTempDirectory 693 | 694 | SupportMenu 695 | 696 | Title 697 | Click here for help 698 | URL 699 | http://example.edu/ 700 | AccessKey 701 | C 702 | 703 | TranslateEnabled 704 | 705 | UserMessaging 706 | 707 | ExtensionRecommendations 708 | 709 | FeatureRecommendations 710 | 711 | UrlbarInterventions 712 | 713 | SkipOnboarding 714 | 715 | MoreFromMozilla 716 | 717 | FirefoxLabs 718 | 719 | Locked 720 | 721 | 722 | UseSystemPrintDialog 723 | 724 | VisualSearchEnabled 725 | 726 | WebsiteFilter 727 | 728 | Block 729 | 730 | <all_urls> 731 | 732 | Exceptions 733 | 734 | https://www.google.com/* 735 | https://www.yahoo.com/* 736 | 737 | 738 | 739 | 740 | -------------------------------------------------------------------------------- /update_version.cmd: -------------------------------------------------------------------------------- 1 | xml ed -P --inplace --update "/policyDefinitions/@revision" -v "%1" windows/firefox.admx 2 | xml ed -P --inplace --update "/policyDefinitions/resources/@minRequiredRevision" -v "%1" windows/firefox.admx 3 | xml ed -P --inplace --update "/policyDefinitionResources/@revision" -v "%1" windows/de-DE/firefox.adml 4 | xml ed -P --inplace --update "/policyDefinitionResources/@revision" -v "%1" windows/en-US/firefox.adml 5 | xml ed -P --inplace --update "/policyDefinitionResources/@revision" -v "%1" windows/ru-RU/firefox.adml 6 | xml ed -P --inplace --update "/policyDefinitionResources/@revision" -v "%1" windows/fr-FR/firefox.adml 7 | -------------------------------------------------------------------------------- /windows/de-DE/mozilla.adml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | Mozilla 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /windows/en-US/firefox.adml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | Microsoft Windows XP SP2 or later 8 | No longer supported. 9 | Firefox 60 or later, Firefox 60 ESR or later 10 | Firefox 62 or later, Firefox 60.2 ESR or later 11 | Firefox 63 or later 12 | Firefox 64 or later, Firefox 60.4 ESR or later 13 | Firefox 66 or later, Firefox 60.6 ESR or later 14 | Firefox 67 or later, Firefox 60.7 ESR or later 15 | Firefox 68 or later, Firefox 68 ESR or later 16 | Firefox 68.0.1 or later, Firefox 68.0.1 ESR or later 17 | Firefox 60 ESR or later 18 | Firefox 68.5 ESR or later 19 | Firefox 69 or later, Firefox 68.1 ESR or later 20 | Firefox 70 or later, Firefox 68.2 ESR or later 21 | Firefox 71 or later, Firefox 68.3 ESR or later 22 | Firefox 72 or later, Firefox 68.4 ESR or later 23 | Firefox 73 or later, Firefox 68.5 ESR or later 24 | Firefox 74 or later, Firefox 68.6 ESR or later 25 | Firefox 75 or later, Firefox 68.7 ESR or later 26 | Firefox 75 or later 27 | Firefox 76 or later, Firefox 68.8 ESR or later 28 | Firefox 76 or later 29 | Firefox 77 or later, Firefox 68.9 ESR or later 30 | Firefox 77 or later 31 | Firefox 78 or later 32 | Firefox 79 or later, Firefox 78.1 ESR or later 33 | Firefox 80 or later, Firefox 78.2 ESR or later 34 | Firefox 81 or later, Firefox 78.3 ESR or later 35 | Firefox 82 or later, Firefox 78.4 ESR or later 36 | Firefox 83 or later, Firefox 78.5 ESR or later 37 | Firefox 84 or later, Firefox 78.6 ESR or later 38 | Firefox 85 or later, Firefox 78.7 ESR or later 39 | Firefox 86 or later, Firefox 78.8 ESR or later 40 | Firefox 88 or later, Firefox 78.10 ESR or later 41 | Firefox 89 or later, Firefox 78.11 ESR or later 42 | Firefox 90 or later, Firefox 78.12 ESR or later 43 | Firefox 91 or later 44 | Firefox 95 or later, Firefox 91.4 ESR or later 45 | Firefox 96 or later, Firefox 91.5 ESR or later 46 | Firefox 96 or later 47 | Firefox 97 or later, Firefox 91.6 ESR or later 48 | Firefox 98 or later 49 | Firefox 99 or later, Firefox 91.8 ESR or later 50 | Firefox 100 or later, Firefox 91.9 ESR or later 51 | Firefox 101 or later, Firefox 91.10 ESR or later 52 | Firefox 102 or later 53 | Firefox 104 or later, Firefox 102.2 ESR or later 54 | Firefox 105 or later, Firefox 102.3 ESR or later 55 | Firefox 106 or later, Firefox 102.4 ESR or later 56 | Firefox 107 or later, Firefox 102.5 ESR or later 57 | Firefox 108 or later, Firefox 102.6 ESR or later 58 | Firefox 109 or later, Firefox 102.7 ESR or later 59 | Firefox 110 or later, Firefox 102.8 ESR or later 60 | Firefox 112 or later 61 | Firefox 113 or later 62 | Firefox 114 or later, Firefox 102.12 ESR or later 63 | Firefox 118 or later, Firefox 115.3 ESR or later 64 | Firefox 120 or later, Firefox 115.5 ESR or later 65 | Firefox 121 or later, Firefox 115.6 ESR or later 66 | Firefox 122 or later, Firefox 115.7 ESR or later 67 | Firefox 123 or later, Firefox 115.8 ESR or later 68 | Firefox 124 or later, Firefox 115.9 ESR or later 69 | Firefox 124 or later 70 | Firefox 125 or later, Firefox 115.10 ESR or later 71 | Firefox 126 or later 72 | Firefox 127 or later 73 | Firefox 128 or later 74 | Firefox 129 or later, Firefox 128.1 ESR or later 75 | Firefox 130 or later, Firefox 128.2 ESR or later 76 | Firefox 130 or later 77 | Firefox 131 or later, Firefox 128.3 ESR or later 78 | Firefox 137 or later 79 | Firefox 138 or later 80 | Firefox 138, Firefox 128.10 ESR 81 | Firefox 142 or later, Firefox 140.2 ESR or later 82 | Firefox 144 or later, Firefox 140.4 ESR or later 83 | Firefox 144 or later 84 | Firefox 145 or later 85 | Firefox 86 | Permissions 87 | Camera 88 | Microphone 89 | Location 90 | Notifications 91 | Autoplay 92 | Virtual Reality 93 | Screen Sharing 94 | Authentication 95 | Bookmarks 96 | Certificates 97 | Popups 98 | Cookies 99 | Addons 100 | Extensions 101 | Flash 102 | Home page 103 | Search 104 | Preferences (Deprecated) 105 | User Messaging 106 | Disabled Ciphers 107 | Encrypted Media Extensions 108 | PDF.js 109 | Picture-in-Picture 110 | Proxy Settings 111 | Security Devices 112 | Firefox Suggest (US only) 113 | Content Analysis (DLP) 114 | Interception Points 115 | Clipboard 116 | Drag And Drop 117 | Firefox Home 118 | Generative AI 119 | Allowed Sites 120 | Allowed Sites (Session Only) 121 | Blocked Sites 122 | Application Autoupdate 123 | If this policy is enabled, Firefox is automatically updated without user approval. 124 | 125 | If this policy is disabled, Firefox updates are downloaded but the user can choose when to install the update. 126 | 127 | If this policy is not configured, the user can choose whether or not Firefox is automatically updated. 128 | Custom Update URL 129 | 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. 130 | 131 | If this policy is disabled or not configured, the default update URL is used. 132 | SPNEGO 133 | If this policy is enabled, the specified websites are permitted to engage in SPNEGO authentication with the browser. Entries in the list are formatted as mydomain.com or https://myotherdomain.com. 134 | 135 | If this policy is disabled or not configured, no websites are permitted to engage in SPNEGO authentication with the browser. 136 | 137 | For more information, see https://developer.mozilla.org/en-US/docs/Mozilla/Integrated_authentication. 138 | Delegated 139 | If this policy is enabled, the browser may delegate user authorization to the server for the specified websites. Entries in the list are formatted as mydomain.com or https://myotherdomain.com. 140 | 141 | If this policy is disabled or not configured, the browser will not delegate user authorization to the server for any websites. 142 | 143 | For more information, see https://developer.mozilla.org/en-US/docs/Mozilla/Integrated_authentication. 144 | NTLM 145 | If this policy is enabled, the specified websites are trusted to use NTLM authentication. Entries in the list are formatted as mydomain.com or https://myotherdomain.com. 146 | 147 | If this policy is disabled or not configured, no websites are trusted to use NTLM authentication. 148 | 149 | For more information, see https://developer.mozilla.org/en-US/docs/Mozilla/Integrated_authentication. 150 | Allow Non FQDN 151 | If this policy is enabled (and the checkboxes are checked), you can always allow SPNEGO or NTLM on non FQDNs (fully qualified domain names). 152 | 153 | If this policy is disabled or not configured, NTLM and SPNEGO are not enabled on non FQDNs. 154 | Allow Proxies 155 | If this policy is disabled, SPNEGO and NTLM will not authenticate with proxy servers. 156 | 157 | If this policy is enabled (and the checkboxes are checked) or not configured, NTLM and SPNEGO will always authenticate with proxies. 158 | Do not allow authentication preferences to be changed 159 | If this policy is disabled, authentication preferences can be changed by the user. 160 | 161 | If this policy is enabled or not configured, authentication preferences cannot be changed by the user. 162 | Allow authentication in private browsing 163 | If this policy is enabled, integrated authentication is used in private browsing. 164 | 165 | If this policy is disabled or not configured, integrated authentication is not used in private browsing. 166 | Block Add-ons Manager 167 | If this policy is enabled, the user cannot access the Add-ons Manager or about:addons. 168 | 169 | If this policy is disabled or not configured, the user can access the Add-ons Manager and about:addons. 170 | Block about:config 171 | If this policy is enabled, the user cannot access about:config. 172 | 173 | If this policy is disabled or not configured, the user can access about:config. 174 | Block about:profiles 175 | If this policy is enabled, the user cannot access about:profiles. 176 | 177 | If this policy is disabled or not configured, the user can access about:profiles. 178 | Block Troubleshooting Information 179 | If this policy is enabled, the user cannot access Troubleshooting Information or about:support. 180 | 181 | If this policy is disabled or not configured, the user can access Troubleshooting Information and about:support. 182 | Disable Set Desktop Background 183 | If this policy is enabled, the user cannot set an image as their desktop background. 184 | 185 | If this policy is disabled or not configured, users can set images as their desktop background. 186 | Captive Portal 187 | If this policy is disabled, captive portal support is disabled. 188 | 189 | If this policy is enabled or not configured, captive portal support is enabled. 190 | Import Enterprise Roots 191 | If this policy is enabled, Firefox will read certificates from the Windows certificate store. 192 | 193 | If this policy is disabled or not configured, Firefox will not read certificates from the Windows certificate store. 194 | Install Certificates 195 | If this policy is enabled, Firefox will install the listed certificates into Firefox. It will look in %USERPROFILE%\AppData\Local\Mozilla\Certificates and %USERPROFILE%\AppData\Roaming\Mozilla\Certificates. 196 | 197 | If this policy is disabled or not configured, Firefox will not install additional certificates. 198 | Default Download Directory 199 | If this policy is enabled, you can set the default directory for downloads. ${home} can be used for the native home path. 200 | 201 | If this policy is disabled or not configured, the default Firefox download directory is used. 202 | Download Directory 203 | If this policy is enabled, you can set and lock the directory for downloads. ${home} can be used for the native home path. 204 | 205 | If this policy is disabled or not configured, the default Firefox download directory is used and the user can change it. 206 | DNS Over HTTPS 207 | Enabled 208 | If this policy is disabled, DNS over HTTPS is disabled. 209 | 210 | If this policy is enabled or not configured, DNS Over HTTPS is enabled. 211 | Provider URL 212 | If this policy is enabled, the URL specified is used as the provider URL. 213 | 214 | If this policy is disabled or not configured, the default provider is used. 215 | 216 | Locked 217 | If this policy is enabled, DNS over HTTPS settings cannot be changed by the user. 218 | 219 | If this policy is disabled or not configured, DNS over HTTPS settings can be changed by the user. 220 | Excluded Domains 221 | If this policy is enabled, the specified domains are excluded from DNS over HTTPS. 222 | 223 | If this policy is disabled or not configured, no domains are excluded from DNS over HTTPS. 224 | Configure DNS Over HTTPS (Moved) 225 | If this policy is enabled, the default configuration for DNS over HTTPS can be changed. 226 | 227 | If this policy is disabled or not configured, DNS Over HTTPS uses the default Firefox configuration. 228 | Fallback 229 | If this policy is disabled, Firefox will not fallback to your default DNS resolver if there is a problem with the secure DNS provider. 230 | 231 | If this policy is enabled or not configured, Firefox will use your default DNS resolver if there is a problem with the secure DNS provider. 232 | Disable Master Password Creation 233 | If this policy is enabled, users cannot create a master password. 234 | 235 | If this policy is disabled or not configured, users can create a master password. 236 | Disable Update 237 | If this policy is enabled, the browser does not receive updates. 238 | 239 | If this policy is disabled or not configured, the browser receives updates. 240 | Disable Built-in PDF Viewer (PDF.js) 241 | If this policy is enabled, PDF files are not viewed within Firefox. 242 | 243 | If this policy is disabled or not configured, PDF files are viewed within Firefox. 244 | Disable the default browser agent 245 | If this policy is enabled, the default browser agent is disabled. 246 | 247 | If this policy is disabled or not configured, the default browser agent is enabled. 248 | 249 | For more information about the default browser agent, see https://firefox-source-docs.mozilla.org/toolkit/mozapps/defaultagent/default-browser-agent/index.html 250 | Disable Developer Tools 251 | If this policy is enabled, web developer tools are not available within Firefox. 252 | 253 | If this policy is disabled or not configured, web developer tools are available within Firefox. 254 | Disable Feedback Commands 255 | If this policy is enabled, the "Submit Feedback" and "Report Deceptive Site" menu items are not available from the help menu. 256 | 257 | If this policy is disabled or not configured, the "Submit Feedback" and "Report Deceptive Site" menu items are available from the help menu. 258 | Disable Firefox Accounts 259 | If this policy is enabled, Firefox Accounts is disabled which includes disabling Sync. 260 | 261 | If this policy is disabled or not configured, Firefox Accounts and Sync are available. 262 | Disable Firefox Screenshots 263 | If this policy is enabled, Firefox Screenshots is not available. 264 | 265 | If this policy is disabled or not configured, Firefox Screenshots is available. 266 | Disable Firefox Studies 267 | If this policy is enabled, Firefox will never run SHIELD studies or do Heartbeat surveys. 268 | 269 | If this policy is disabled or not configured, the user can choose to enable SHIELD studies or Heartbeat surveys. 270 | 271 | For more information, see https://support.mozilla.org/en-US/kb/shield and https://wiki.mozilla.org/Firefox/Shield/Heartbeat 272 | Disable Forget Button 273 | If this policy is enabled, the "Forget" button is not available. 274 | 275 | If this policy is disabled or not configured, the "Forget" button is available. 276 | Disable Form History 277 | If this policy is enabled, Firefox will not remember form or search history. 278 | 279 | If this policy is disabled or not configured, Firefox will remember form and search history. 280 | Do not allow passwords to be revealed in saved logins 281 | If this policy is enabled, users cannot show passwords in saved logins. 282 | 283 | If this policy is disabled or not configured, users can show passwords in saved logins. 284 | Disable Pocket (Deprecated) 285 | If this policy is enabled, Pocket is not available. 286 | 287 | If this policy is disabled or not configured, Pocket is available. 288 | Disable Private Browsing 289 | If this policy is enabled, private browsing is not allowed. 290 | 291 | If this policy is disabled or not configured, private browsing is allowed. 292 | Disable Profile Import 293 | If this policy is enabled, the "Import data from another browser" option is not available in the bookmarks window. 294 | 295 | If this policy is disabled or not configured, the "Import data from another browser" option is available. 296 | Disable Profile Refresh 297 | If this policy is enabled, the "Refresh Firefox" button is not available on the about:support page or on support.mozilla.org. 298 | 299 | If this policy is disabled or not configured, the "Refresh Firefox" button is available. 300 | Disable Safe Mode 301 | If this policy is enabled, the user cannot restart the browser into safe mode. 302 | 303 | If this policy is disabled or not configured, safe mode is allowed. 304 | Prevent overriding certificate errors 305 | If this policy is enabled, the "Add Exception" button is not available when a certificate is invalid. This prevents the user from overriding the certificate error. 306 | 307 | If this policy is disabled or not configured, certificate errors can be overridden. 308 | Prevent overriding safe browsing errors 309 | If this policy is enabled, a user cannot bypass the warning and visit a harmful site. 310 | 311 | If this policy is disabled or not configured, a user can choose to visit a harmful site. 312 | Disable System Addon Updates 313 | If this policy is enabled, new system add-ons will not be installed and existing system add-ons will not be updated. 314 | 315 | If this policy is disabled or not configured, system add-ons are installed and updated. 316 | Disable Telemetry 317 | If this policy is enabled, telemetry is not uploaded. 318 | 319 | If this policy is disabled or not configured, telemetry is collected and uploaded. 320 | 321 | Mozilla recommends that you do not disable telemetry. Information collected through telemetry helps us build a better product for businesses like yours. 322 | Display Bookmarks Toolbar (Deprecated) 323 | If this policy is enabled, the bookmarks toolbar is displayed by default. The user can still hide it. 324 | 325 | If this policy is disabled or not configured, the bookmarks toolbar is not displayed by default. 326 | Display Bookmarks Toolbar 327 | If this policy is enabled, the default bookmarks toolbar display can be configured. 328 | 329 | If this policy is disabled or not configured, the bookmarks toolbar is displayed on the new tab page by default. 330 | Always 331 | Never 332 | New Tab 333 | Display Menu Bar (Deprecated) 334 | If this policy is enabled, the menu bar is displayed by default. The user can still hide it. 335 | 336 | If this policy is disabled or not configured, the menu bar is not displayed by default. 337 | Display Menu Bar 338 | If this policy is enabled, you can choose whether or not the menu bar is displayed and whether or not the user can show and hide the menu bar. 339 | 340 | If this policy is disabled or not configured, the menu bar is not displayed by default. 341 | Always 342 | Never 343 | On by default 344 | Off by default 345 | Don't Check Default Browser 346 | If this policy is enabled, Firefox does not check to see if it is the default browser at startup. 347 | 348 | If this policy is disabled or not configured, Firefox checks to see if it is the default browser at startup. 349 | Extensions to Install 350 | If this policy is enabled, you can specify a list of extension URLs or paths that will be installed when Firefox is started. 351 | Anytime this list is changed, the extensions will be reinstalled. 352 | 353 | If this policy is disabled or not configured, no extensions are installed. 354 | Extensions to Uninstall 355 | If this policy is enabled, you can specify a list of extension IDs that will be uninstalled. 356 | Anytime this list is changed, the extensions will be uninstalled. 357 | 358 | If this policy is disabled or not configured, no extensions are uninstalled. 359 | Prevent extensions from being disabled or removed 360 | If this policy is enabled, you can specify a list of extension IDs that the user will be unable to uninstall or disable. 361 | 362 | If this policy is disabled or not configured, no extensions are locked 363 | Extension Update 364 | If this policy is disabled, extensions will not be updated automatically. 365 | 366 | If this policy is enabled or not configured, extensions will be updated automatically. 367 | Extension Management 368 | If this policy is enabled, you can use JSON to describe the extension management policy. 369 | 370 | If this policy is disabled or not configured, extensions will not be managed. 371 | 372 | For detailed information on creating the policy, see https://github.com/mozilla/policy-templates/blob/master/README.md#extensionsettings. 373 | Extension Management (JSON on one line) 374 | Hardware Acceleration 375 | If this policy is disabled, hardware acceleration is disabled and cannot be enabled. 376 | 377 | If this policy is enabled or not configured, hardware acceleration is enabled. 378 | Legacy Profiles 379 | If this policy is enabled, Firefox will not try to create different profiles for installations of Firefox in different directories. This is the equivalent of the MOZ_LEGACY_PROFILES environment variable. 380 | 381 | If this policy is disabled or not configured, Firefox will create a new profile for each unique installation of Firefox. 382 | Revert to legacy SameSite behavior 383 | If this policy is enabled, Firefox will revert to the legacy behavior of SameSite. This means that cookies that don't explicitly specify a SameSite attribute are treated as if they were SameSite=None. 384 | 385 | If this policy is disabled or not configured, Firefox will enforce SameSite=lax. 386 | Revert to legacy SameSite behavior on specific domains 387 | If this policy is enabled, Firefox will revert to the legacy behavior of SameSite for the specified domains. This means that cookies that don't explicitly specify a SameSite attribute are treated as if they were SameSite=None. 388 | 389 | If this policy is disabled or not configured, Firefox will enforce SameSite=lax for all domains. 390 | Local File Links 391 | If this policy is enabled, you can specify origins where linking to local files is allowed. 392 | 393 | If this policy is disabled or not configured, websites can't link to local files. 394 | Network Prediction 395 | If this policy is disabled, network prediction (DNS prefetching) will be disabled. 396 | 397 | If this policy is enabled or not configured, network prediction (DNS prefetching) will be enabled. 398 | New Tab Page 399 | If this policy is disabled, the new tab page will be blank. 400 | 401 | If this policy is enabled or not configured, the new tab page will be the default. 402 | Offer to save logins 403 | If this policy is enabled or not configured, Firefox will offer to save website logins and passwords. 404 | 405 | If this policy is disabled, Firefox will not offer to save website logins and passwords. 406 | Offer to save logins (default) 407 | If this policy is enabled or not configured, Firefox will offer to save website logins and passwords. 408 | 409 | If this policy is disabled, Firefox will not offer to save website logins and passwords. 410 | 411 | In either case, the user will be able to change the value (it is not locked). 412 | If this policy is enabled, pop-up windows are always allowed for the origins indicated. If a top level domain is specified (http://example.org), pop-up windows are allowed for all subdomains as well. 413 | 414 | If this policy is disabled or not configured, the default pop-up policy is followed. 415 | Block pop-ups from websites 416 | If this policy is disabled, pop-up windows are allowed from websites by default. 417 | 418 | If this policy is not configured or enabled, popups are not allowed from websites. 419 | Do not allow preferences to be changed 420 | If this policy is enabled, pop-up preferences cannot be changed by the user. 421 | 422 | If this policy is disabled or not configured, the user can change their pop-up preferences. 423 | If this policy is enabled, add-ons are always allowed for the origins indicated unless add-on install is disabled. If a top level domain is specified (http://example.org), add-ons are allowed for all subdomains as well. 424 | 425 | If this policy is disabled or not configured, the default add-on policy is followed. 426 | Allow add-on installs from websites 427 | If this policy is disabled, add-ons cannot be installed. 428 | 429 | If this policy is not configured or enabled, add-ons can be installed. 430 | If this policy is enabled, cookies are always allowed for the origins indicated. If a top level domain is specified (http://example.org), cookies are allowed for all subdomains as well. 431 | 432 | If this policy is disabled or not configured, the default cookie policy is followed. 433 | If this policy is enabled, cookies are allowed for the origins indicated, but removed at the end of the session. If a top level domain is specified (http://example.org), cookies are allowed for all subdomains as well. 434 | 435 | If this policy is disabled or not configured, the default cookie policy is followed. 436 | 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. 437 | 438 | If this policy is disabled or not configured, cookies are not blocked by default. 439 | Accept cookies from websites (Deprecated) 440 | If this policy is disabled, cookies are not accepted from websites by default. 441 | 442 | If this policy is not configured or enabled, cookies are accepted from websites. 443 | Accept third-party cookies (Deprecated) 444 | If this policy is enabled and cookies are allowed, you can set when to accept third-party cookies. 445 | 446 | This setting is ignored if this policy is disabled or not configured or if cookies are not allowed. 447 | Always 448 | Never 449 | From visited 450 | Keep cookies until Firefox is closed 451 | If this policy is enabled and cookies are allowed, they will expire when Firefox is closed. 452 | 453 | This setting is ignored if this policy is disabled or not configured or if cookies are not allowed. 454 | Reject trackers (Deprecated) 455 | If this policy is enabled and cookies are allowed, Firefox will reject tracker cookies by default. 456 | 457 | This setting is ignored if this policy is disabled or not configured or if cookies are not allowed. 458 | Do not allow preferences to be changed 459 | If this policy is enabled, cookie preferences cannot be changed by the user. 460 | Cookie Behavior 461 | If this policy is enabled, you can configure cookie behavior. 462 | 463 | If this policy is not configured or disabled, cookies are rejected for known trackers. 464 | Cookie Behavior in private browsing 465 | If this policy is enabled, you can configure cookie behavior in private browsing. 466 | 467 | If this policy is not configured or disabled, in private browsing, cookies are rejected for known trackers and third-party cookies are partitioned. 468 | Accept all cookies 469 | Reject third party cookies 470 | Reject all cookies 471 | Reject third party cookies for sites you haven't visited 472 | Reject cookies for known trackers 473 | Reject cookies for known trackers and partition third-party cookies (Total Cookie Protection) 474 | If this policy is enabled, access to the camera is always allowed for the origins indicated. 475 | 476 | If this policy is disabled or not configured, the default camera policy is followed. 477 | If this policy is enabled, access to the camera is blocked for the origins indicated. 478 | 479 | If this policy is disabled or not configured, access to the camera is not blocked by default. 480 | Block new requests asking to access the camera 481 | If this policy is enabled, sites that are not in the Allow policy will not be allowed to ask permission to access the camera. 482 | 483 | If this policy is disabled or not configured, any site that is not in the Block policy can ask permission to access the camera. 484 | Do not allow preferences to be changed 485 | If this policy is enabled, camera preferences cannot be changed by the user. 486 | 487 | If this policy is disabled or not configured, the user can change their camera preferences. 488 | If this policy is enabled, access to the microphone is always allowed for the origins indicated. 489 | 490 | If this policy is disabled or not configured, the default microphone policy is followed. 491 | If this policy is enabled, access to the microphone is blocked for the origins indicated. 492 | 493 | If this policy is disabled or not configured, access to the microphone is not blocked by default. 494 | Block new requests asking to access the microphone 495 | If this policy is enabled, sites that are not in the Allow policy will not be allowed to ask permission to access the microphone. 496 | 497 | If this policy is disabled or not configured, any site that is not in the Block policy can ask permission to access the microphone. 498 | Do not allow preferences to be changed 499 | If this policy is enabled, microphone preferences cannot be changed by the user. 500 | 501 | If this policy is disabled or not configured, the user can change their microphone preferences. 502 | If this policy is enabled, access to location is always allowed for the origins indicated. 503 | 504 | If this policy is disabled or not configured, the default location policy is followed. 505 | If this policy is enabled, access to location is blocked for the origins indicated. 506 | 507 | If this policy is disabled or not configured, access to location is not blocked by default. 508 | Block new requests asking to access location 509 | If this policy is enabled, sites that are not in the Allow policy will not be allowed to ask permission to access location. 510 | 511 | If this policy is disabled or not configured, any site that is not in the Block policy can ask permission to access location. 512 | Do not allow preferences to be changed 513 | If this policy is enabled, location preferences cannot be changed by the user. 514 | 515 | If this policy is disabled or not configured, the user can change location preferences. 516 | If this policy is enabled, notifications can always be sent for the origins indicated. 517 | 518 | If this policy is disabled or not configured, the default notification policy is followed. 519 | If this policy is enabled, notifications are always blocked for the origins indicated. 520 | 521 | If this policy is disabled or not configured, notifications are not blocked by default. 522 | Block new requests asking to send notifications 523 | If this policy is enabled, sites that are not in the Allow policy will not be allowed to ask permission to send notifications. 524 | 525 | If this policy is disabled or not configured, any site that is not in the Block policy can ask permission to send notifications. 526 | Do not allow preferences to be changed 527 | If this policy is enabled, notification preferences cannot be changed by the user. 528 | 529 | If this policy is disabled or not configured, the user can change their notification preferences. 530 | If this policy is enabled, autoplay is always enabled for the origins indicated. 531 | 532 | If this policy is disabled or not configured, the default autoplay policy is followed. 533 | If this policy is enabled, autoplay is always blocked for the origins indicated. 534 | 535 | If this policy is disabled or not configured, the default autoplay policy is followed. 536 | Default autoplay level 537 | If this policy is enabled, you can choose the default autoplay level. 538 | 539 | If this policy is disabled or not configured, audio is blocked by default. 540 | 541 | Note: Blocking audio and video does not work on the ESR. 542 | Do not allow preferences to be changed 543 | If this policy is enabled, autoplay preferences cannot be changed by the user. 544 | 545 | If this policy is disabled or not configured, the user can change autoplay preferences. 546 | Allow Audio and Video 547 | Block Audio 548 | Block Audio and Video 549 | If this policy is enabled, access to virtual reality devices is always allowed for the origins indicated. 550 | 551 | If this policy is disabled or not configured, the default virtual reality policy is followed. 552 | If this policy is enabled, access to virtual reality devices is blocked for the origins indicated. 553 | 554 | If this policy is disabled or not configured, access to virtual reality devices is not blocked by default. 555 | Block new requests asking to access virtual reality devices 556 | If this policy is enabled, sites that are not in the Allow policy will not be allowed to ask permission to access virtual reality devices. 557 | 558 | If this policy is disabled or not configured, any site that is not in the Block policy can ask permission to access virtual reality devices. 559 | Do not allow preferences to be changed 560 | If this policy is enabled, virtual reality preferences cannot be changed by the user. 561 | 562 | If this policy is disabled or not configured, the user can change their virtual reality preferences. 563 | If this policy is enabled, screen sharing is always allowed for specified origins. 564 | 565 | If this policy is disabled or not configured, screen sharing requests follow the default policy. 566 | If this policy is enabled, screen sharing is blocked for specified origins. 567 | 568 | If this policy is disabled or not configured, screen sharing requests follow the default policy. 569 | Block new screen sharing requests 570 | If this policy is enabled, sites that are not in the Allow policy cannot request screen sharing. 571 | 572 | If this policy is disabled or not configured, any site that is not in the Block policy can request screen sharing. 573 | Do not allow screen sharing preferences to be changed 574 | If this policy is enabled, screen sharing preferences cannot be changed by the user. 575 | 576 | If this policy is disabled or not configured, the user can change their screen sharing preferences. 577 | Customize Firefox Home (Moved to category) 578 | If this policy is enabled, you can choose the sections displayed on Firefox Home and prevent the user from changing them. 579 | 580 | If this policy is disabled or not configured, the default sections are displayed and the user can change them. 581 | If this policy is enabled, Flash is activated by default for the origins indicated unless Flash is completely disabled. If a top level domain is specified (http://example.org), Flash is allowed for all subdomains as well. 582 | 583 | If this policy is disabled or not configured, the default Flash policy is followed. 584 | If this policy is enabled, Flash is blocked for the origins indicated. If a top level domain is specified (http://example.org), Flash is blocked from all subdomains as well. 585 | 586 | If this policy is disabled or not configured, the default Flash policy is followed. 587 | Activate Flash on websites 588 | If this policy is enabled, Flash is always activated on websites. 589 | 590 | If this policy is disabled, Flash is never activated on websites, even if they are in the specified in the Allow list. 591 | 592 | If this policy is not configured, Flash is click to play. 593 | Do not allow preferences to be changed 594 | If this policy is enabled, Flash preferences cannot be changed by the user. 595 | 596 | If this policy is disabled or not configured, the user can change their Flash preferences. 597 | Override the first run page 598 | If this policy is enabled, you can specify a URL to be used as the first run page. If you leave the URL blank, no first run page will be shown. 599 | 600 | Starting with Firefox 83, Firefox ESR 78.5, you can also specify multiple URLS separated by a vertical bar (|). 601 | 602 | If this policy is disabled or not configured, the first run page is displayed. 603 | Override the upgrade page 604 | If this policy is enabled, you can specify a URL to be displayed after Firefox is updated. If you leave the URL blank, no upgrade page will be shown. 605 | 606 | If this policy is disabled or not configured, the upgrade page is displayed. 607 | Clear data when browser is closed (Moved) 608 | If this policy is enabled, you can choose data to be cleared when Firefox is closed. 609 | 610 | If this policy is disabled or not configured, data is not cleared when the browser is closed. 611 | Clear data when browser is closed 612 | 613 | Cache 614 | If the policy is enabled, the cache is cleared when the browser is closed. 615 | 616 | If this policy is disabled or not configured, the cache is not cleared when the browser is closed. 617 | Cookies 618 | If the policy is enabled, cookies are cleared when the browser is closed. 619 | 620 | If this policy is disabled or not configured, cookies are not cleared when the browser is closed. 621 | Download History (Deprecated) 622 | If the policy is enabled, download history is cleared when the browser is closed. 623 | 624 | If this policy is disabled or not configured, download history is not cleared when the browser is closed. 625 | Form Data 626 | If the policy is enabled, form data is cleared when the browser is closed. 627 | 628 | If this policy is disabled or not configured, form data is not cleared when the browser is closed. 629 | History 630 | If the policy is enabled, browsing history and download history are cleared when the browser is closed. 631 | 632 | If this policy is disabled or not configured, browsing history and download history are not cleared when the browser is closed. 633 | Active Logins 634 | If the policy is enabled, sessions are cleared when the browser is closed. 635 | 636 | If this policy is disabled or not configured, sessions are not cleared when the browser is closed. 637 | Site Preferences 638 | If the policy is enabled, site preferences are cleared when the browser is closed. 639 | 640 | If this policy is disabled or not configured, site preferences are not cleared when the browser is closed. 641 | Offline Website Data (Deprecated) 642 | If the policy is enabled, offline application storage is cleared when the browser is closed. 643 | 644 | If this policy is disabled or not configured, offline application storage is not cleared when the browser is closed. 645 | Locked 646 | If this policy is disabled, all shutdown preferences can be changed by the user. 647 | 648 | If this policy is enabled, any shutdown preferences explicitly set via policy cannot be changed by the user. 649 | 650 | If this policy is not configured, no shutdown preferences can be changed by the user (previous behavior). 651 | Blocked websites 652 | If this policy is enabled, you can specify match patterns that indicate sites to be blocked. The match patterns are documented at https://developer.mozilla.org/en-US/Add-ons/WebExtensions/Match_patterns. There is a 1000 entry limit. 653 | 654 | If this policy is disabled or not configured, no websites are blocked. 655 | Exceptions to blocked websites 656 | If this policy is enabled, and the website filter is enabled, you can specify match patterns for sites you do not want to block. The match patterns are documented at https://developer.mozilla.org/en-US/Add-ons/WebExtensions/Match_patterns. There is a 1000 entry limit. 657 | 658 | If this policy is disabled or not configured, there are no exceptions to the website filter. 659 | Website Filter (JSON on one line) 660 | Website Filter (JSON) 661 | If this policy is enabled, you can specify blocked sites and exceptions via JSON. 662 | 663 | If this policy is disabled or not configured, websites are not filtered. 664 | Bookmark 01 665 | Bookmark 02 666 | Bookmark 03 667 | Bookmark 04 668 | Bookmark 05 669 | Bookmark 06 670 | Bookmark 07 671 | Bookmark 08 672 | Bookmark 09 673 | Bookmark 10 674 | Bookmark 11 675 | Bookmark 12 676 | Bookmark 13 677 | Bookmark 14 678 | Bookmark 15 679 | Bookmark 16 680 | Bookmark 17 681 | Bookmark 18 682 | Bookmark 19 683 | Bookmark 20 684 | Bookmark 21 685 | Bookmark 22 686 | Bookmark 23 687 | Bookmark 24 688 | Bookmark 25 689 | Bookmark 26 690 | Bookmark 27 691 | Bookmark 28 692 | Bookmark 29 693 | Bookmark 30 694 | Bookmark 31 695 | Bookmark 32 696 | Bookmark 33 697 | Bookmark 34 698 | Bookmark 35 699 | Bookmark 36 700 | Bookmark 37 701 | Bookmark 38 702 | Bookmark 39 703 | Bookmark 40 704 | Bookmark 41 705 | Bookmark 42 706 | Bookmark 43 707 | Bookmark 44 708 | Bookmark 45 709 | Bookmark 46 710 | Bookmark 47 711 | Bookmark 48 712 | Bookmark 49 713 | Bookmark 50 714 | If this policy is enabled, you can configure a bookmark be added to Firefox. Due to a bug, you must select the location. Note that you must specify the bookmarks in order. 715 | 716 | If this policy is disabled or not configured, a new bookmark is not added. 717 | Toolbar 718 | Menu 719 | No Default Bookmarks 720 | If this policy is enabled, the default bookmarks and Smart Bookmarks (Most Visited, Recent Tags) are not created. 721 | 722 | If this policy is disabled or not configured, default bookmarks and Smart Bookmarks (Most Visited, Recent Tags) are created. 723 | 724 | Note: this policy is only effective if used before the first run of the profile. 725 | URL for Home page 726 | If this policy is enabled, you can set a default home page. You can also lock the home page. 727 | 728 | If this policy is disabled or not configured, the user can set and change the home page. 729 | Additional Homepages 730 | If this policy is enabled, you can have additional home pages. They are opened in multiple tabs. 731 | 732 | If this policy is disabled or not configured, there is only one home page. 733 | Start Page 734 | If this policy is enabled, you can change what is displayed when Firefox starts. It can be the homepage, the previous session, or a blank page. 735 | 736 | If this policy is disabled or not configured, the start page defaults to the previous session. 737 | None 738 | Homepage 739 | Previous Session 740 | Homepage (Locked) 741 | Show Home button on toolbar 742 | If this policy is enabled, the home button will appear on the toolbar by default. 743 | 744 | If this policy is disabled, the home button will not appear on the toolbar by default. 745 | 746 | If this policy is not configured, Firefox will determine whether or not the home button appears on the toolbar by default. 747 | Password Manager 748 | If this policy is disabled, the password manager is not available via preferences. 749 | 750 | If this policy is enabled or not configured, the password manager is available via preferences. 751 | Password Manager Exceptions 752 | If this policy is enabled, you can specify sites where Firefox won't offer to save passwords. 753 | 754 | If this policy is disabled or not configured, Firefox will offer to save passwords on all sites. 755 | Prompt for download location 756 | If this policy is disabled, the user is not prompted for a download location. 757 | 758 | If this policy is enabled, the user is always prompted for a download location. 759 | 760 | If this policy is not configured, the user is prompted for a download location, but can change the default. 761 | Proxy Settings (Moved) 762 | If this policy is enabled, you can configure and lock network settings. 763 | 764 | Select the connection type and then fill in the appropriate sections. Due to a bug, you must select a value for the SOCKS proxy version. 765 | 766 | If this policy is disabled or not configured, the default network settings are used and user can change them. 767 | SOCKS v4 768 | SOCKS v5 769 | Automatic proxy configuration URL 770 | These should only be set if you selected autoConfig 771 | Proxy bypass URLs 772 | These should only be set if you selected manual proxy 773 | Connection Type 774 | No Proxy 775 | Use system proxy settings 776 | Manual proxy configuration 777 | Auto-detect proxy settings 778 | Automatic proxy configuration 779 | Tracking Protection (Moved) 780 | If this policy is not configured, tracking protection is not enabled by default in the browser but it is enabled by default in private browsing and the user can change it. 781 | 782 | If this policy is disabled, tracking protection is disabled and locked in both the browser and private browsing. 783 | 784 | If this policy is enabled, private browsing is enabled by default in both the browser and private browsing and you can choose whether or not to prevent the user from changing it. 785 | Tracking Protection 786 | Enabled 787 | If this policy is enabled, tracking protection is enabled. 788 | 789 | If this policy is disabled, tracking protection is disabled and cannot be changed by the user. 790 | 791 | If this policy is not configured, standard tracking protection is used and the user can change it. 792 | Cryptomining 793 | If this policy is enabled, scripts that use cryptomining are blocked. 794 | 795 | If this policy is disabled or not configured, scripts that use cryptomining are not blocked. 796 | Fingerprinting 797 | If this policy is enabled, scripts that use fingerprinting are blocked. 798 | 799 | If this policy is disabled or not configured, scripts that use fingerprinting are not blocked. 800 | Exceptions 801 | If this policy is enabled, you can specify origins where tracking protection is not enabled. 802 | 803 | If this policy is disabled or not configured, tracking protection is enabled for all websites. 804 | Do not allow tracking protection preferences to be changed 805 | If this policy is enabled, tracking protection preferences cannot be changed by the user. 806 | 807 | If this policy is disabled or not configured, the user can change tracking protection preferences. 808 | Email Tracking 809 | If this policy is enabled, hidden email tracking pixels and scripts on websites are blocked. 810 | 811 | If this policy is disabled or not configured, hidden email tracking pixels and scripts on websites are not blocked. 812 | Tracking Protection Mode 813 | If this policy is enabled, the tracking protection mode can be set to either Standard or Strict, and the user cannot change it. 814 | 815 | If this policy is disabled or not configured, the default tracking protection mode is used and the user can change it. 816 | Strict 817 | Standard 818 | Suspected Fingerprinting 819 | If this policy is enabled, Firefox reduces the amount of information exposed to websites to protect against potential fingerprinting attempts. 820 | 821 | If this policy is disabled or not configured, Firefox does not reduce information exposure for suspected fingerprinting. 822 | Baseline Exceptions 823 | If this policy is enabled, Firefox will automatically apply exceptions required to avoid major website breakage. 824 | 825 | If this policy is disabled or not configured, Firefox will not automatically apply exceptions required to avoid major website breakage. 826 | Convenience Exceptions 827 | If this policy is enabled, Firefox will apply exceptions automatically that are only required to fix minor issues and make convenience features available. 828 | 829 | If this policy is disabled or not configured, Firefox will not Firefox will apply exceptions automatically that are only required to fix minor issues and make convenience features available. 830 | Requested locale 831 | Requested locale (string) 832 | If this policy is enabled, you can specify a list of requested locales for the application in order of preference. It will cause the corresponding language pack to become active. 833 | 834 | If this policy is disabled or not configured, the application will use the default locale. 835 | Security Devices 836 | If this policy is enabled, you can specify a list of PKCS #11 modules to be installed. Modules are specified as a name and a fully qualified path. 837 | 838 | If this policy is disabled or not configured, no additional PKCS #11 modules will be installed. 839 | Add 840 | Delete 841 | If this policy is enabled, you can specify the names of PKCS #11 modules to be deleted. 842 | 843 | If this policy is disabled or not configured, no PKCS #11 modules will be deleted. 844 | Search bar location 845 | If this policy is enabled, you can set whether the search bar is separate from the URL bar. 846 | 847 | If this policy is disabled or not configured, new users get a unified search bar, users upgrading from Firefox 56 and below get a separate search bar. 848 | Search Engine One 849 | Search Engine Two 850 | Search Engine Three 851 | Search Engine Four 852 | Search Engine Five 853 | If this policy is enabled, you can configure a search engine to be added to Firefox. Use {searchTerms} to indicate where the search term is placed. Due to a bug, you must select the method (usually GET). Note that you must specify the search engines in order. 854 | 855 | If this policy is disabled or not configured, a new search engine is not added. 856 | Unified 857 | Separate 858 | GET 859 | POST 860 | Default Search Engine 861 | If this policy is enabled, you can set the name of a search engine to be used as the default. 862 | 863 | If this policy is disabled or not configured, the Firefox default engine is used. 864 | Prevent Search Engine Installs 865 | If this policy is enabled, the user cannot install search engines from web page. 866 | 867 | If this policy is disabled or not configured, search engines can be installed from web pages. 868 | Remove Search Engines 869 | If this policy is enabled, you can specify the names of engines to be removed or hidden. 870 | 871 | If this policy is disabled or not configured, search engines will not be removed or hidden. 872 | Search Suggestions 873 | If this policy is disabled, search suggestions will be disabled. 874 | 875 | If this policy is enabled, search suggestions will be enabled. 876 | 877 | If this policy is not configured, search suggestions will be enabled, but the user can turn them off. 878 | Minimum SSL version enabled 879 | If this policy is enabled, Firefox will not use SSL/TLS versions less than the value specified. 880 | 881 | If this policy is disabled or not configured, Firefox defaults to a minimum of TLS 1.2. 882 | Maximum SSL version enabled 883 | If this policy is enabled, Firefox will not use SSL/TLS versions greater than the value specified. 884 | 885 | If this policy is disabled or not configured, Firefox defaults to a maximum of TLS 1.3. 886 | TLS 1.0 887 | TLS 1.1 888 | TLS 1.2 889 | TLS 1.3 890 | Support Menu 891 | If this policy is enabled, a new menu item is added to the help menu with support information. 892 | 893 | If this policy is disabled or not configured, no menu item is added. 894 | What's New (Deprecated) 895 | If this policy is disabled, the What's new icon and menu item will not be displayed. 896 | 897 | If this policy is enabled or not configured, the What's New icon and menu item will be displayed. 898 | Extension Recommendations 899 | If this policy is disabled, extensions will not be recommended as the user visits websites. 900 | 901 | If this policy is enabled or not configured, extensions will be recommended as the user visits websites. 902 | Feature Recommendations 903 | If this policy is disabled, Firefox features will not be recommended as the user uses Firefox. 904 | 905 | If this policy is enabled or not configured, Firefox features will be recommended as the user uses Firefox. 906 | Urlbar Interventions 907 | If this policy is disabled, actions will not be recommended based on what the user types in the URL bar. 908 | 909 | If this policy is enabled or not configured, actions will be recommended based on what the user types in the URL bar. 910 | Skip Onboarding 911 | If this policy is enabled, onboarding messages will not be shown on the new tab page. 912 | 913 | If this policy is disabled or not configured, onboarding messages will be shown on the new tab page. 914 | More from Mozilla 915 | If this policy is disabled, the More from Mozilla section will not be shown in preferences. 916 | 917 | If this policy is enabled or not configured, the More from Mozilla section will be shown in preferences. 918 | Firefox Labs 919 | If this policy is disabled, the Firefox Labs section will not be shown in preferences. 920 | 921 | If this policy is enabled or not configured, the Firefox Labs section will be shown in preferences. 922 | Do not allow user messaging preferences to be changed 923 | If this policy is disabled, user messaging preferences can be changed by the user. 924 | 925 | If this policy is enabled or not configured, user messaging preferences cannot be changed by the user. 926 | TLS_DHE_RSA_WITH_AES_128_CBC_SHA 927 | TLS_DHE_RSA_WITH_AES_256_CBC_SHA 928 | TLS_ECDHE_RSA_WITH_AES_128_CBC_SHA 929 | TLS_ECDHE_RSA_WITH_AES_256_CBC_SHA 930 | TLS_ECDHE_RSA_WITH_AES_128_GCM_SHA256 931 | TLS_ECDHE_ECDSA_WITH_AES_128_GCM_SHA256 932 | TLS_RSA_WITH_AES_128_CBC_SHA 933 | TLS_RSA_WITH_AES_256_CBC_SHA 934 | TLS_RSA_WITH_3DES_EDE_CBC_SHA 935 | TLS_RSA_WITH_AES_128_GCM_SHA256 936 | TLS_RSA_WITH_AES_256_GCM_SHA384 937 | TLS_ECDHE_ECDSA_WITH_AES_128_CBC_SHA 938 | TLS_ECDHE_ECDSA_WITH_AES_256_CBC_SHA 939 | TLS_ECDHE_ECDSA_WITH_AES_256_GCM_SHA384 940 | TLS_ECDHE_ECDSA_WITH_CHACHA20_POLY1305_SHA256 941 | TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384 942 | TLS_ECDHE_RSA_WITH_CHACHA20_POLY1305_SHA256 943 | TLS_CHACHA20_POLY1305_SHA256 944 | TLS_AES_128_GCM_SHA256 945 | TLS_AES_256_GCM_SHA384 946 | If this policy is enabled, the corresponding cipher is disabled. 947 | 948 | If this policy is disabled, the corresponding cipher is enabled. 949 | 950 | If this policy is not configured, the corresponding cipher is enabled or disabled based on the default in Firefox. 951 | Enable Encrypted Media Extensions 952 | If this policy is disabled, encrypted media extensions (like Widevine) are not downloaded by Firefox unless the user consents to installing them. 953 | 954 | If this policy is enabled or not configured, encrypted media extensions (like Widevine) are downloaded automatically and used by Firefox. 955 | Lock Encrypted Media Extensions 956 | If this policy is enabled and EncryptedMediaExtensions are disabled, Firefox will not download encrypted media extensions (like Widevine) or ask the user to install them. 957 | 958 | If this policy is disabled or not configured, it has no effect. 959 | Enable PDF.js 960 | If this policy is disabled, the built-in PDF viewer is not used. 961 | 962 | If this policy is enabled or not configured, the built-in PDF viewer is used. 963 | Enable Permissions 964 | If this policy is enabled, the built-in PDF viewer will honor document permissions like preventing the copying of text. 965 | 966 | If this policy is disabled or not configured, document permissions are ignored. 967 | Enabled 968 | If this policy is disabled, the Picture-in-Picture toggle does not appear on videos. 969 | 970 | If this policy is enabled or not configured, the Picture-in-Picture toggle is available on videos. 971 | Locked 972 | If this policy is enabled, Picture-in-Picture settings cannot be changed by the user. 973 | 974 | If this policy is disabled or not configured, Picture-in-Picture settings can be changed by the user. 975 | Primary (Master) Password 976 | If this policy is enabled, a primary password is required. 977 | 978 | If this policy is disabled, users cannot create a primary password. 979 | 980 | If this policy is not configured, users can choose to create a primary password. 981 | Handlers (JSON on one line) 982 | Handlers 983 | If this policy is enabled, you can use JSON to configure default application handlers. 984 | 985 | If this policy is disabled or not configured, Firefox defaults are used. 986 | 987 | For detailed information on creating the policy, see https://github.com/mozilla/policy-templates/blob/master/README.md#handlers. 988 | Preferences (JSON on one line) 989 | Preferences 990 | Note: In order to use this policy, you must clear all settings in the old Preferences (Deprecated) section. 991 | 992 | If this policy is enabled, you can use JSON to configure preferences. 993 | 994 | If this policy is disabled or not configured, preferences are not modified. 995 | 996 | For detailed information on creating the policy, see https://github.com/mozilla/policy-templates/blob/master/README.md#preferences. 997 | Bookmarks (JSON on one line) 998 | Bookmarks (JSON) 999 | If this policy is enabled, you can use JSON to configure bookmarks, including [] to clear all bookmarks. 1000 | 1001 | If this policy is disabled or not configured, the individual bookmark policies are used. 1002 | 1003 | If this policy is enabled along with individual bookmarks, those bookmarks will not be added. 1004 | 1005 | This policy has no effect on Managed Bookmarks. 1006 | 1007 | For detailed information on the JSON, see https://github.com/mozilla/policy-templates/blob/master/README.md#bookmarks. 1008 | Managed Bookmarks (JSON on one line) 1009 | Managed Bookmarks 1010 | If this policy is enabled, you can use JSON to configure managed bookmarks. 1011 | 1012 | If this policy is disabled or not configured, managed bookmarks are not added. 1013 | 1014 | For detailed information on creating the policy, see https://github.com/mozilla/policy-templates/blob/master/README.md#managedbookmarks. 1015 | Define domains allowed to access Google Workspace 1016 | If this policy is enabled, users can only access Google Workspace for the specified domains (separated by a comma). To allow access to Gmail, you can add consumer_accounts. 1017 | 1018 | If this policy is disabled or not configured, users can access any account on Google Workspace as well as Gmail. 1019 | Background updater 1020 | If this policy is disabled, the application will not try to install updates when the application is not running. 1021 | 1022 | If this policy is enabled or not configured, application updates may be installed (without user approval) in the background, even when the application is not running. The operating system might still require approval. 1023 | Auto Launch Protocols From Origins (JSON on one line) 1024 | Auto Launch Protocols From Origins 1025 | If this policy is enabled, you can define a list of external protocols that can be used from listed origins without prompting the user. 1026 | 1027 | If this policy is disabled or not configured, any site that invokes an external protocol will ask the user for permission. 1028 | 1029 | For detailed information on creating the policy, see https://github.com/mozilla/policy-templates/blob/master/README.md#autolaunchprotocolsfromorigins. 1030 | Windows SSO 1031 | If this policy is enabled, Firefox will use credentials stored in Windows to sign in to Microsoft, work, and school accounts. 1032 | 1033 | If this policy is disabled or not configured, credentials must be entered manually. 1034 | Use System Print Dialog 1035 | If this policy is enabled, Firefox will use the system print dialog instead of showing print preview before printing. 1036 | 1037 | If this policy is disabled or not configured, Firefox will show print preview before printing. 1038 | Disable warnings based on file extension for specific file types on domains (JSON on one line) 1039 | Disable warnings based on file extension for specific file types on domains 1040 | If this policy is enabled, you can define a list of domains and file type extensions that will be exempt from executable warnings. 1041 | 1042 | If this policy is disabled or not configured, warnings are shown for all executable file types. 1043 | 1044 | For detailed information on creating the policy, see https://github.com/mozilla/policy-templates/blob/master/README.md#exemptdomainfiletypepairsfromfiletypedownloadwarnings. 1045 | Start Downloads in Temporary Directory 1046 | If this policy is enabled, Firefox will start downloads in a temporary directory and they will be automatically deleted when you close the browser. 1047 | 1048 | If this policy is disabled or not configured, Firefox will put downloads in the download folder and they will not be automatically deleted when you close the browser. 1049 | Force direct intranet site navigation on single word entries in the address bar 1050 | If this policy is enabled, typing single word entries in the address bar will attempt to navigate to intranet sites first, falling back to search if the DNS request fails. 1051 | 1052 | If this policy is disabled or not configured, typing single word entries in the address bar will search. 1053 | Pin updates to a specific version 1054 | If this policy is enabled, you can specify a Firefox version as xx. or xx.xx. and Firefox will not be updated beyond that major or minor version. 1055 | 1056 | If this policy is disabled or not configured, Firefox will update normally. 1057 | Do not allow proxy settings to be changed 1058 | If this policy is enabled, proxy settings cannot be changed by the user. 1059 | 1060 | If this policy is disabled or not configured, the user can change their proxy settings. 1061 | Connection Type 1062 | If this policy is enabled, you can set the connection type. 1063 | 1064 | If this policy is disabled or not configured, Firefox defaults to using the system proxy. 1065 | HTTP Proxy 1066 | If this policy is enabled, you can set the HTTP Proxy used when manual proxy configuration is specified. 1067 | 1068 | If this policy is disabled or not configured, Firefox does not use an HTTP Proxy. 1069 | Use HTTP proxy for HTTPS 1070 | If this policy is enabled, the HTTP Proxy is used for HTTPS when manual proxy configuration is specified. 1071 | 1072 | If this policy is disabled or not configured, Firefox does not use an HTTPS Proxy unless specified. 1073 | HTTPS Proxy 1074 | If this policy is enabled, you can set the HTTPS Proxy used when manual proxy configuration is specified. 1075 | 1076 | If this policy is disabled or not configured, Firefox does not use an HTTPS Proxy. 1077 | SOCKS Host 1078 | If this policy is enabled, you can set the SOCKS Host and version used when manual proxy configuration is specified. 1079 | 1080 | If this policy is disabled or not configured, Firefox does not use a SOCKS Host. 1081 | Automatic proxy configuration URL 1082 | If this policy is enabled, you can set the automatic proxy configuration URL. 1083 | 1084 | If this policy is disabled or not configured, Firefox does not use an automatic proxy configuration URL. 1085 | Proxy Passthrough 1086 | If this policy is enabled, the proxy settings are bypassed for the locations specified. 1087 | 1088 | If this policy is disabled or not configured, Firefox does not bypass the proxy. 1089 | Do not prompt for authentication if password is saved 1090 | If this policy is enabled, Firefox will not prompt for proxy authentication when a password is saved. 1091 | 1092 | If this policy is disabled or not configured, Firefox will always prompt for proxy authentication. 1093 | Proxy DNS when using SOCKS 1094 | If this policy is enabled, DNS is proxied when using SOCKS. 1095 | 1096 | If this policy is disabled, DNS is not proxied when using SOCKS. 1097 | 1098 | If this policy is not configured, DNS is not proxied when using SOCKS v4, but proxied when using SOCKS v5. 1099 | Disable Third Party Module Blocking 1100 | If this policy is enabled, users are not allowed to block third-party modules from the about:third-party page. 1101 | 1102 | If this policy is disabled or not configured, users are allowed to block third-party modules from the about:third-party page. 1103 | Containers (JSON on one line) 1104 | Containers 1105 | If this policy is enabled, you can use JSON to configure the default containers. 1106 | 1107 | If this policy is disabled or not configured, the built-in defaults are used. 1108 | 1109 | For detailed information on creating the policy, see https://github.com/mozilla/policy-templates/blob/master/README.md#containers. 1110 | Suggestions from the web 1111 | If this policy is enabled, you will get suggestions from Firefox related to your search. 1112 | 1113 | If this policy is disabled, you will not get these suggestions. 1114 | 1115 | If this policy is not configured, you will get suggestions from Firefox related to your search. 1116 | Suggestions from sponsors 1117 | If this policy is enabled, you will support the development of Firefox with occasional sponsored suggestions. 1118 | 1119 | If this policy is disabled, you will not get these suggestions. 1120 | 1121 | If this policy is not configured, you will get occasional sponsored suggestions. 1122 | Improve the Firefox Suggest experience 1123 | If this policy is enabled, you will help create a richer search experience by allowing Mozilla to process your search queries. 1124 | 1125 | If this policy is disabled or not configured, you do not allow Mozilla to process your search queries. 1126 | Do not allow preferences to be changed 1127 | If this policy is enabled, Firefox Suggest preferences cannot be changed by the user. 1128 | 1129 | If this policy is disabled or not configured, the user can change their Firefox Suggest preferences. 1130 | Printing 1131 | If this policy is disabled, printing is disabled. 1132 | 1133 | If this policy is enabled or not configured, printing is enabled. 1134 | Manual Update Only 1135 | If this policy is enabled, users will not be prompted to install updates and Firefox will not check for updates in the background. The user must manually check and install updates from the About dialog. 1136 | 1137 | If this policy is disabled or not configured, the browser receives updates. 1138 | 1139 | This policy is not recommended for most users. 1140 | Allow File Selection Dialogs 1141 | If this policy is disabled, users will not be able to open file selection dialogs. In most cases, Firefox will act as if the user clicked the cancel button. 1142 | 1143 | If this policy is enabled or not configured, users can open file selection dialogs. 1144 | Enable autofill for addresses 1145 | If this policy is disabled, addresses will not be autofilled for Firefox versions and regions that support it. 1146 | 1147 | If this policy is enabled or not configured, addresses will be autofilled for Firefox versions and regions that support it. 1148 | Enable autofill for payment methods 1149 | If this policy is disabled, payment methods will not be autofilled for Firefox versions and regions that support it. 1150 | 1151 | If this policy is enabled or not configured, payment methods will be autofilled for Firefox versions and regions that support it. 1152 | Enable webpage translation 1153 | If this policy is disabled, web page translation will not be available. 1154 | 1155 | If this policy is enabled or not configured, web page translation will be available. 1156 | 1157 | Note: Web page translation is done completely on the client, so there is no data or privacy risk. 1158 | Disable Encrypted Client Hello 1159 | If this policy is enabled, the TLS feature Encrypted Client Hello (ECH) will be disabled. 1160 | 1161 | If this policy is disabled or not configured, the TLS feature Encrypted Client Hello (ECH) will be enabled. 1162 | Enable post-quantum key agreement 1163 | If this policy is enabled, post-quantum key agreement for TLS will be enabled. 1164 | 1165 | If this policy is disabled or not configured, post-quantum key agreement for TLS will be disabled. 1166 | HTTPS-Only Mode 1167 | If this policy is enabled, you can set the default behavior for HTTPS-Only Mode. 1168 | 1169 | If this policy is disabled or not configured, HTTPS-Only Mode is not enabled. 1170 | Off by default 1171 | Off and locked 1172 | On by default 1173 | On and locked 1174 | HTTP Allowlist 1175 | If this policy is enabled, you can specify a list of origins that will not be upgraded to HTTPS. 1176 | 1177 | If this policy is disabled or not configured, all origins are upgraded to HTTPS if HTTPS-Only Mode is enabled. 1178 | Private Browsing Mode Availability 1179 | If this policy is enabled, you can set the availability of Private Browsing Mode. 1180 | 1181 | If this policy is disabled or not configured, Private Browsing Mode is available. 1182 | Allow Private Browsing Mode 1183 | Disable Private Browsing Mode 1184 | Force Private Browsing Mode 1185 | Agent Name 1186 | If this policy is enabled, you can specify the name of the DLP agent, used in dialogs and notifications about DLP operations. 1187 | 1188 | If this policy is disabled or not configured, the agent name "A DLP Agent" is used. 1189 | Agent Timeout 1190 | If this policy is enabled, you can specify the timeout in number of seconds after a DLP request is sent to the agent. After this timeout, the request will be denied unless 'Default Result' is set to 1 or 2. 1191 | 1192 | If this policy is disabled or not configured, the timeout is 30 seconds. 1193 | Allow Url Regex List 1194 | If this policy is enabled, you can specify a space-separated list of regular expressions that indicates URLs for which DLP operations will always be allowed without consulting the agent. The default is "^about:(?!blank|srcdoc).*", meaning that any pages that start with "about:" will be exempt from DLP except for "about:blank" and "about:srcdoc", as these can be controlled by web content. 1195 | 1196 | If this policy is disabled or not configured, the DLP agent will always be consulted. 1197 | Bypass For Same Tab Operations 1198 | If this policy is enabled, Firefox will automatically allow DLP requests whose data comes from the same tab and frame - for example, if data is copied to the clipboard and then pasted on the same page. 1199 | 1200 | If this policy is disabled or not configured, Firefox will not pass DLP requests whose data comes from the same tab and frame to the DLP agent as normal. 1201 | Client Signature 1202 | If this policy is enabled, you can set the required signature of the DLP agent connected to the pipe. If this is a non-empty string and the DLP agent does not have a signature with a Subject Name that exactly matches this value, Firefox will not connect to the pipe. 1203 | 1204 | If this policy is disabled or not configured, the signature will not be verified. 1205 | Default Result 1206 | If this policy is enabled, you can indicate the desired behavior for DLP requests if there is a problem connecting to the DLP agent. 1207 | 1208 | If this policy is disabled or not configured, the DLP request will be denied if there is a problem connecting to the agent. 1209 | Deny the request 1210 | Warn the user and allow them to choose whether to allow or deny 1211 | Allow the request 1212 | Deny Url Regex List 1213 | If this policy is enabled, you can specify a space-separated list of regular expressions that indicates URLs for which DLP operations will always be denied without consulting the agent. 1214 | 1215 | If this policy is disabled or not configured, the DLP agent will always be consulted. 1216 | Enabled 1217 | If this policy is enabled, Firefox will use DLP. 1218 | 1219 | If this policy is disabled or not configured, Firefox will not use DLP. 1220 | 1221 | Note: If this policy is enabled and no DLP agent is running, all DLP requests will be denied unless Default Result is set to 1 or 2. 1222 | Is Per User 1223 | If this policy is disabled, the pipe the DLP agent creates is per-system. 1224 | 1225 | If this policy is enabled or not configured, the pipe the DLP agent creates is per-user. 1226 | Pipe Path Name 1227 | If this policy is enabled, you can change the name of the pipe for the DLP agent. 1228 | 1229 | If this policy is disabled or not configured, the default pipe name of 'path_user' is used. 1230 | Show Blocked Result 1231 | If this policy is disabled, Firefox will not show a notification when a DLP request is denied. 1232 | 1233 | If this policy is enabled or not configured, Firefox will show a notification when a DLP request is denied. 1234 | Enabled 1235 | If this policy is disabled, clipboard operations will not use DLP. 1236 | 1237 | If this policy is enabled or not configured, clipboard operations will use DLP. 1238 | Plain Text Only 1239 | If this policy is disabled, all formats will be analyzed on the clipboard, which some DLP agents may not expect. 1240 | 1241 | If this policy is enabled or not configured, only the text/plain format will be analyzed on the clipboard. 1242 | Enabled 1243 | If this policy is disabled, drag and drop operations will not use DLP. 1244 | 1245 | If this policy is enabled or not configured, drag and drop operations will use DLP. 1246 | Plain Text Only 1247 | If this policy is disabled, all formats will be analyzed in what is being dropped, which some DLP agents may not expect. 1248 | 1249 | If this policy is enabled or not configured, only the text/plain format will be analyzed in what is being dropped. 1250 | File Upload 1251 | If this policy is disabled, file upload operations will not use DLP. 1252 | 1253 | If this policy is enabled or not configured, file upload operations will use DLP. 1254 | Download 1255 | If this policy is disabled, download operations will not use DLP. 1256 | 1257 | If this policy is enabled or not configured, download operations will use DLP. 1258 | Print 1259 | If this policy is disabled, print operations will not use DLP. 1260 | 1261 | If this policy is enabled or not configured, print operations will use DLP. 1262 | Timeout Result 1263 | If this policy is enabled, you can indicate the desired behavior for DLP requests if the DLP agent does not respond to a request in less than AgentTimeout seconds. 1264 | 1265 | If this policy is disabled or not configured, the request will be denied. 1266 | Skip Terms of Use 1267 | If this policy is enabled, the Firefox Terms of Use (https://www.mozilla.org/about/legal/terms/firefox/) and Privacy Notice (https://www.mozilla.org/privacy/firefox/) do not display upon startup. 1268 | 1269 | You represent that you accept and have the authority to accept the Terms of Use on behalf of all individuals to whom you provide access to this browser. 1270 | 1271 | If this policy is disabled or not configured, the Firefox Terms of Use and Privacy Notice do display upon startup. 1272 | Search 1273 | If this policy is disabled, the search field is not displayed on the new tab page. 1274 | 1275 | If this policy is disabled or not configured, the search field is displayed on the new tab page. 1276 | Shortcuts 1277 | If this policy is disabled, shortcuts are not displayed on the new tab page. 1278 | 1279 | If this policy is disabled or not configured, shortcuts are displayed on the new tab page. 1280 | Sponsored Shortcuts 1281 | If this policy is disabled, sponsored shortcuts are not displayed on the new tab page. 1282 | 1283 | If this policy is disabled or not configured, sponsored are shortcuts displayed on the new tab page. 1284 | Recent Activity 1285 | If this policy is disabled, recent activity not displayed on the new tab page. 1286 | 1287 | If this policy is disabled or not configured, recent activity is displayed on the new tab page. 1288 | Stories 1289 | If this policy is disabled, stories are not displayed on the new tab page. 1290 | 1291 | If this policy is disabled or not configured, stories are displayed on the new tab page. 1292 | Sponsored Stories 1293 | If this policy is disabled, sponsored stories are not displayed on the new tab page. 1294 | 1295 | If this policy is disabled or not configured, sponsored stories are displayed on the new tab page. 1296 | Do not allow preferences to be changed 1297 | If this policy is enabled, Firefox Home preferences cannot be changed by the user. 1298 | 1299 | If this policy is disabled or not configured, the user can change their Firefox Home preferences. 1300 | Visual Search 1301 | If this policy is disabled, visual search is disabled. 1302 | 1303 | If this policy is enabled or not configured, visual search is enabled. 1304 | Enabled 1305 | If this policy is disabled, all generative AI features are disabled by default. Individual generative AI policies can override this setting. 1306 | 1307 | If this policy is enabled or not configured, generative AI features are enabled by default, unless overridden by individual generative AI policies. 1308 | Chatbot 1309 | If this policy is disabled, AI chatbots are not available in the sidebar. 1310 | 1311 | If this policy is enabled or not configured, AI chatbots are available in the sidebar. 1312 | Link Previews 1313 | If this policy is disabled, AI is not used to generate link previews. 1314 | 1315 | If this policy is enabled or not configured, AI can be used to generate link previews. 1316 | Tab Groups 1317 | If this policy is disabled, AI is not used to suggest names and tabs for tab groups. 1318 | 1319 | If this policy is enabled or not configured, AI is not used to suggest names and tabs for tab groups. 1320 | Do not allow preferences to be changed 1321 | If this policy is enabled, generative AI preferences cannot be changed by the user. 1322 | 1323 | If this policy is disabled or not configured, generative AI preferences cannot be changed by the user. 1324 | If this policy is enabled, the preference is locked to true. If this policy is disabled, the preference is locked to false. 1325 | 1326 | For a description of the preference, see: 1327 | 1328 | https://github.com/mozilla/policy-templates/blob/master/README.md#preferences 1329 | If this policy is enabled, the preference is locked to the string entered. If this policy is disabled, it has no effect. 1330 | 1331 | For a description of the preference, see: 1332 | 1333 | https://github.com/mozilla/policy-templates/blob/master/README.md#preferences 1334 | If this policy is enabled, the preference is locked to the value selected. If this policy is disabled, it has no effect. 1335 | 1336 | For a description of the preference, see: 1337 | 1338 | https://github.com/mozilla/policy-templates/blob/master/README.md#preferences. 1339 | This preference is no longer supported on Windows. We are investigating creating a policy. 1340 | Auto (0) 1341 | Always Off (1) 1342 | Ask Every Time 1343 | Select Automatically 1344 | accessibility.force_disabled 1345 | app.update.auto (Deprecated) 1346 | browser.bookmarks.autoExportHTML 1347 | browser.bookmarks.file 1348 | browser.bookmarks.restore_default_bookmarks 1349 | browser.cache.disk.enable 1350 | browser.fixup.dns_first_for_single_words 1351 | browser.places.importBookmarksHTML 1352 | browser.safebrowsing.phishing.enabled 1353 | browser.safebrowsing.malware.enabled 1354 | browser.search.update 1355 | browser.tabs.warnOnClose 1356 | browser.cache.disk.parent_directory 1357 | browser.slowStartup.notificationDisabled 1358 | browser.taskbar.previews.enable 1359 | browser.urlbar.suggest.bookmark 1360 | browser.urlbar.suggest.history 1361 | browser.urlbar.suggest.openpage 1362 | datareporting.policy.dataSubmissionPolicyBypassNotification 1363 | dom.allow_scripts_to_close_windows 1364 | dom.disable_window_flip 1365 | dom.disable_window_move_resize 1366 | dom.event.contextmenu.enabled 1367 | dom.keyboardevent.keypress.hack.dispatch_non_printable_keys.addl 1368 | dom.keyboardevent.keypress.hack.use_legacy_keycode_and_charcode.addl 1369 | dom.xmldocument.load.enabled 1370 | dom.xmldocument.async.enabled 1371 | extensions.blocklist.enabled 1372 | geo.enabled 1373 | extensions.getAddons.showPane 1374 | intl.accept_languages 1375 | media.eme.enabled (Deprecated) 1376 | media.gmp-gmpopenh264.enabled 1377 | media.gmp-widevinecdm.enabled 1378 | network.dns.disableIPv6 1379 | network.IDN_show_punycode 1380 | places.history.enabled 1381 | print.save_print_settings 1382 | security.default_personal_cert 1383 | security.ssl.errorReporting.enabled 1384 | security.mixed_content.block_active_content 1385 | ui.key.menuAccessKeyFocuses 1386 | browser.newtabpage.activity-stream.default.sites 1387 | extensions.htmlaboutaddons.recommendations.enabled 1388 | media.peerconnection.enabled 1389 | media.peerconnection.ice.obfuscate_host_addresses.whitelist (Deprecated) 1390 | media.peerconnection.ice.obfuscate_host_addresses.blocklist 1391 | security.osclientcerts.autoload 1392 | security.tls.hello_downgrade_check 1393 | widget.content.gtk-theme-override 1394 | 1395 | 1396 | 1397 | 1398 | 1399 | 1400 | 1401 | 1402 | 1403 | 1404 | 1405 | Always allow NTLM on non FQDNs 1406 | Always allow SPNEGO on non FQDNs 1407 | 1408 | 1409 | Allow NTLM to automatically authenticate with proxy servers 1410 | Allow SPNEGO to automatically authenticate with proxy servers 1411 | 1412 | 1413 | 1414 | 1415 | 1416 | 1417 | 1418 | 1419 | 1420 | 1421 | 1422 | 1423 | 1424 | 1425 | 1426 | 1427 | 1428 | Allow popups for websites 1429 | 1430 | 1431 | 1432 | 1433 | 1434 | 1435 | 1436 | 1437 | 1438 | 1439 | 1440 | 1441 | 1442 | Don't allow tracking protection preferences to be changed. 1443 | Block cryptomining scripts. 1444 | Block fingerprinting scripts. 1445 | Exceptions: 1446 | 1447 | 1448 | 1449 | 1450 | 1451 | 1452 | 1453 | 1454 | 1455 | 1456 | 1457 | URL: 1458 | 1459 | 1461 | Don't allow the homepage to be changed. 1462 | 1463 | 1464 | Additional homepages 1465 | 1466 | 1467 | 1468 | 1469 | 1470 | Title: 1471 | 1472 | 1474 | URL: 1475 | 1476 | 1478 | Favicon URL: 1479 | 1480 | 1482 | Placement: 1483 | 1484 | Folder name: 1485 | 1486 | 1488 | 1489 | 1490 | 1491 | 1492 | 1493 | 1494 | 1495 | 1496 | Method: 1497 | 1498 | 1499 | 1500 | 1501 | 1502 | 1503 | 1504 | 1505 | 1506 | 1507 | 1508 | 1509 | 1510 | 1511 | 1512 | 1513 | 1514 | 1515 | 1516 | 1517 | 1518 | 1519 | 1521 | 1522 | 1523 | 1524 | 1525 | 1526 | Don't allow proxy settings to be changed. 1527 | Connection Type: 1528 | 1529 | HTTP Proxy: 1530 | 1531 | 1533 | Use this proxy server for all protocols. 1534 | SSL Proxy: 1535 | 1536 | 1538 | FTP Proxy: 1539 | 1540 | 1542 | SOCKS Host: 1543 | 1544 | 1546 | SOCKS Version: 1547 | 1548 | No proxy for 1549 | 1550 | 1552 | Example: .mozilla.org, .net.nz, 192.168.1.0/24 1553 | Automatic proxy configuration URL: 1554 | 1555 | 1557 | Do not prompt for authentication if password is saved. 1558 | Proxy DNS when using SOCKS v5. 1559 | 1560 | 1561 | Provider URL: 1562 | 1563 | 1565 | Enable DNS over HTTPS. 1566 | Don't allow DNS over HTTPS preferences to be changed. 1567 | 1568 | 1569 | 1570 | 1571 | 1572 | 1573 | 1574 | 1575 | Title: 1576 | 1577 | 1579 | URL: 1580 | 1581 | 1583 | Access key: 1584 | 1585 | 1587 | 1588 | 1589 | 1590 | 1592 | 1593 | 1594 | 1595 | 1596 | 1597 | 1598 | 1599 | 1600 | 1601 | 1602 | 1603 | 1604 | 1605 | 1606 | Cache 1607 | Cookies 1608 | Download History 1609 | Form & Search History 1610 | Browsing History 1611 | Active Logins 1612 | Site Preferences 1613 | Offline Website Data 1614 | 1615 | 1616 | Search 1617 | Shortcuts 1618 | Sponsored shortcuts 1619 | Recent activity 1620 | Recommended stories 1621 | Sponsored stories 1622 | Snippets (deprecated) 1623 | Don't allow settings to be changed 1624 | 1625 | 1626 | 1627 | 1628 | 1629 | 1630 | 1631 | 1632 | 1633 | 1634 | 1635 | 1636 | 1637 | 1638 | 1639 | 1641 | 1642 | 1643 | 1644 | 1645 | 1646 | 1647 | 1648 | 1649 | 1650 | 1651 | 1652 | 1653 | 1655 | 1656 | 1657 | 1658 | 1659 | 1660 | 1661 | 1662 | 1663 | 1664 | 1665 | 1666 | 1667 | 1668 | 1669 | 1670 | Host including port: 1671 | 1672 | 1674 | SOCKS Version: 1675 | 1676 | 1677 | 1678 | 1679 | 1680 | 1681 | 1682 | 1683 | No proxy for 1684 | 1685 | 1687 | Example: .mozilla.org, .net.nz, 192.168.1.0/24 1688 | Connections to localhost, 127.0.0.1/8, and ::1 are never proxied. 1689 | 1690 | 1691 | 1692 | 1693 | 1694 | 1695 | 1696 | 1697 | 1698 | 1699 | 1700 | 1701 | 1702 | 1703 | 1704 | 1705 | 1706 | 1707 | 1708 | 1709 | 1710 | 1711 | -------------------------------------------------------------------------------- /windows/en-US/mozilla.adml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | Mozilla 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /windows/fr-FR/mozilla.adml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | Mozilla 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /windows/mozilla.admx: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /windows/ru-RU/mozilla.adml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | Mozilla 8 | 9 | 10 | 11 | --------------------------------------------------------------------------------