angela 70c11d8503 Disable webp on Firefox added 3 years ago
..
.mozilla c641d3da03 Restore the classic statusbar in Firefox 3 years ago
img 1d4f817209 Multiple Firefox profiles w/ desktop launcher notes 4 years ago
README.md 7d13d244ea Cookie auto-delete notes added 4 years ago
disable-webp-firefox.md 70c11d8503 Disable webp on Firefox added 3 years ago
firefox-disable-doh.md 0b3e2e272e Disable DoH notes 4 years ago
firefox-disable-fat-url-bar.md 6f55c477c7 Disable awesome bar garbage for Firefox 78+ 3 years ago
remove-print-headers.md a1f897ddc5 Hidden print settings in Firefox 4 years ago
restoring-statusbar.md c641d3da03 Restore the classic statusbar in Firefox 3 years ago
setup-browsing-profiles.md 2a4f7e5e80 Remove browser bought by ad agency 4 years ago

README.md

Cookie Auto-Delete Doesn't Work in Waterfox or Firefox

The about:config setting for privacy.firstparty.isolate collides with Cookie Auto-Delete and prevents it from working. Setting it to false regains Cookie Auto-Delete's capabilities.


Noscript/Firefox > This is a privileged page, whose permissions cannot be configured.

On Firefox 60 ESR, I first ran into this garbage:

This is a privileged page, whose permissions cannot be configured.

To get rid this nuisance, modify about:config settings:

about:config

Create the following boolean if it doesn't exist:

  • Right-click in a vacant space > New > boolean
  • Enter preference name: bash privacy.resistFingerprinting.block_mozAddonManager

Enter boolean value:

  • Select true

Also empty the following (choose yourself what to whitelist):

extensions.webextensions.restrictedDomains

This appears to be a "hidden" setting meant for Tor, according to the extensions API:

static bool IsValidHost(const nsACString& host) {
  // This hidden pref allows users to disable mozAddonManager entirely if they
  // want for fingerprinting resistance. Someone like Tor browser will use this
  // pref.
  if (Preferences::GetBool(
          "privacy.resistFingerprinting.block_mozAddonManager")) {
    return false;
  }
https://dxr.mozilla.org/mozilla-central/source/toolkit/mozapps/extensions/AddonManagerWebAPI.cpp