firefox policies: go wild

This commit is contained in:
Aminda Suomalainen 2024-05-13 21:54:05 +03:00
parent 3de5d4cac3
commit 7a68117198
Signed by: Mikaela
SSH Key Fingerprint: SHA256:CXLULpqNBdUKB6E6fLA1b/4SzG0HvKD19PbIePU175Q
2 changed files with 49 additions and 1 deletions

View File

@ -17,6 +17,8 @@ per whatever I am doing.
- [Extensions](#extensions) - [Extensions](#extensions)
- [Privacy Badger](#privacy-badger) - [Privacy Badger](#privacy-badger)
- [Search engines](#search-engines) - [Search engines](#search-engines)
- [Useful looking things for the future](#useful-looking-things-for-the-future)
- [Certificate installations](#certificate-installations)
<!-- END doctoc generated TOC please keep comment here to allow auto update --> <!-- END doctoc generated TOC please keep comment here to allow auto update -->
@ -59,3 +61,15 @@ when testing this policy I won't have to see Google.
Additionally it's a lie since at least Nightly reads it too without Additionally it's a lie since at least Nightly reads it too without
complaining. complaining.
## Useful looking things for the future
### Certificate installations
In the `certificates` section
```json
{
"Install": ["my_certificate_here.pem"]
}
```

View File

@ -67,6 +67,18 @@
} }
} }
}, },
"Certificates": {
"ImportEnterpriseRoots": false
},
"Containers": {
"Default": [
{
"color": "red",
"icon": "fence",
"name": "DIY"
}
]
},
"DNSOverHTTPS": { "DNSOverHTTPS": {
"Enabled": true, "Enabled": true,
"Locked": true, "Locked": true,
@ -78,6 +90,7 @@
"DontCheckDefaultBrowser": true, "DontCheckDefaultBrowser": true,
"EnableTrackingProtection": { "EnableTrackingProtection": {
"Cryptomining": true, "Cryptomining": true,
"EmailTracking": true,
"Exceptions": [ "Exceptions": [
"https://app.element.io", "https://app.element.io",
"https://staging.element.io", "https://staging.element.io",
@ -99,6 +112,10 @@
"Locked": false, "Locked": false,
"Value": true "Value": true
}, },
"EncryptedMediaExtensions": {
"Enabled": true,
"Locked": false
},
"ExtensionSettings": { "ExtensionSettings": {
"addon@darkreader.org": { "addon@darkreader.org": {
"install_url": "https://addons.mozilla.org/firefox/downloads/latest/darkreader/latest.xpi", "install_url": "https://addons.mozilla.org/firefox/downloads/latest/darkreader/latest.xpi",
@ -183,6 +200,17 @@
"StartPage": "previous-session", "StartPage": "previous-session",
"URL": "about:mozilla" "URL": "about:mozilla"
}, },
"OverrideFirstRunPage": "about:mozilla",
"PDFjs": {
"EnablePermissions": false,
"Enabled": true
},
"Preferences": {
"pdfjs.enableScripting": {
"Status": "locked",
"Value": false
}
},
"SearchEngines": { "SearchEngines": {
"Add": [ "Add": [
{ {
@ -230,6 +258,12 @@
], ],
"Default": "Ecosia" "Default": "Ecosia"
}, },
"SearchSuggestEnabled": false "SearchSuggestEnabled": false,
"SecurityDevices": {
"Add": {
"Fujitsu mPollux DigiSignApplication": "/usr/lib64/libcryptoki.so"
}
},
"ShowHomeButton": true
} }
} }