1
0
mirror of https://github.com/yokoffing/Betterfox.git synced 2026-06-12 07:30:47 +05:30

Updated Common Overrides (markdown)

yokoffing
2023-11-10 10:29:33 -05:00
parent 64224f05e6
commit 948ff57183
-13
@@ -155,16 +155,3 @@ user_pref("gfx.canvas.accelerated", true);
Firefox's default scrolling [needs improvement](https://www.reddit.com/r/firefox/comments/y3wzwk/why_is_scrolling_so_janky_on_firefox/).
[Smoothfox](https://github.com/yokoffing/Betterfox/blob/main/Smoothfox.js) provides a far better scroll experience.
***
### Public Key Pinning
:warning: Override if your antivirus software — or some other [source](https://github.com/yokoffing/Betterfox/issues/232#issuecomment-1732346856) — won't let you open websites ([example](https://www.reddit.com/r/firefox/comments/16mlv15/kaspersky_cant_scan_encrypted_connections_with/)).
[Public Key Pinning](https://wiki.mozilla.org/SecurityEngineering/Public_Key_Pinning) (PKP) is a tool that boosts the safety of [SSL certificates](https://www.cloudflare.com/learning/ssl/what-is-an-ssl-certificate/) by linking a website to its unique security key. This process ensures that the website you're visiting is real and not fake. PKP stops any attempts to trick your computer into connecting with a fraudulent website.
```javascript
// PREF: relax certificate pinning
// [ERROR] MOZILLA_PKIX_ERROR_KEY_PINNING_FAILURE
user_pref("security.cert_pinning.enforcement_level", 0);
```