ExemptDomainFileTypePairsFromFileTypeDownloadWarnings
Disable warnings based on file extension for specific file types on domains. This policy is based on the Chrome policy of the same name.
Compatibility: Firefox 102
CCK2 Equivalent: N/A
Preferences Affected: N/A
Examples
Section titled “Examples”{ "policies": { "ExemptDomainFileTypePairsFromFileTypeDownloadWarnings": [ { "file_extension": "jnlp", "domains": [ "example.com" ] } ] }}JSON schema
{ "type": "array", "items": { "type": "object", "properties": { "file_extension": { "type": "string" }, "domains": { "type": "array", "items": { "type": "string" } } } }}Windows (GPO)
Section titled “Windows (GPO)”Software\Policies\Mozilla\Firefox\ExemptDomainFileTypePairsFromFileTypeDownloadWarnings (REG_MULTI_SZ) =[ { "file_extension": "jnlp", "domains": ["example.com"] }]Windows (Intune)
Section titled “Windows (Intune)”OMA-URI:
./Device/Vendor/MSFT/Policy/Config/Firefox~Policy~firefox/ExemptDomainFileTypePairsFromFileTypeDownloadWarningsValue (string):
<enabled/><data id="JSON" value='[ { "file_extension": "jnlp", "domains": ["example.com"] }]'/>If you are using custom ADMX and ADML administrative templates in Intune, you can use this OMA-URI instead to workaround the limit on the length of strings. Put all of your JSON on one line.
OMA-URI:
./Device/Vendor/MSFT/Policy/Config/Firefox~Policy~firefox/ExemptDomainFileTypePairsFromFileTypeDownloadWarningsOneLineValue (string):
<enabled/><data id="JSONOneLine" value='[]'/><dict> <key>ExemptDomainFileTypePairsFromFileTypeDownloadWarnings</key> <array> <dict> <key>file_extension</key> <string>jnlp</string> <key>domains</key> <array> <string>example.com</string> </array> </dict> </array></dict>