browser-extensions.markdown: dirty cookie banner mention

This commit is contained in:
Aminda Suomalainen 2023-12-04 17:18:04 +02:00
parent d7793d6f89
commit bb21b0d4f9
Signed by: Mikaela
SSH Key Fingerprint: SHA256:CXLULpqNBdUKB6E6fLA1b/4SzG0HvKD19PbIePU175Q
1 changed files with 11 additions and 0 deletions

View File

@ -21,6 +21,7 @@ If you need browser extensions, try [the Privacy Guides page](https://privacygui
- [Vendor-prefixed](#vendor-prefixed)
- [Firefox about:config](#firefox-aboutconfig)
- [Advertising](#advertising)
- [Cookie banner blocking](#cookie-banner-blocking)
- [DNS over HTTPS](#dns-over-https)
- [SSDs](#ssds)
@ -199,6 +200,16 @@ Firefox seems to contain a lot of advertising or sponsoring nowadays, whether to
- `browser.promo.focus.enabled` to `false` to stop Firefox Focus advertisements?
- `browser.preferences.moreFromMozilla` to `false` to not hear from other Mozilla products?
## [Cookie banner blocking](https://www.ghacks.net/2022/12/24/configure-firefox-to-reject-cookie-banners-automatically/)
TODO: clean write this.
```js
defaultPref("cookiebanners.service.mode", 2);
defaultPref("cookiebanners.service.mode.privateBrowsing", 2);
defaultPref("cookiebanners.bannerClicking.enabled", true);
```
## DNS over HTTPS
- `network.trr.mode` depends, `3` to enforce DoH (required for ECH) or `5` to explicitly disable. `2` to prefer DoH, but fallback to system also exists.