Skip to content

Commit

Permalink
browser-extensions.markdown: dirty cookie banner mention
Browse files Browse the repository at this point in the history
  • Loading branch information
Mikaela committed Dec 4, 2023
1 parent d7793d6 commit bb21b0d
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions pages/browser-extensions.markdown
Original file line number Diff line number Diff line change
Expand Up @@ -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)

Expand Down Expand Up @@ -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.
Expand Down

0 comments on commit bb21b0d

Please sign in to comment.