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

Updated Optional Hardening (markdown)

yokoffing
2023-10-10 13:46:38 -04:00
parent 4a3e66f500
commit a74785002e
+11 -1
@@ -39,7 +39,7 @@ Disable saving passwords, credit cards, and addresses if you use a password mana
user_pref("signon.rememberSignons", false);
```
#### Address & credit card
#### Addresses & credit cards
* `☰` *→ Settings → Privacy & Security → Forms and Autofill*
```javascript
// PREF: disable address and credit card manager
@@ -59,6 +59,16 @@ user_pref("urlclassifier.features.socialtracking.skipURLs", "");
***
### Top Sites in URL bar
Do not show top sites when you click on the address bar.
* `☰` *→ Settings → Privacy & Security → Address Bar → Shortcuts*
```javascript
// PREF: restore top sites dropdown suggestions with empty query
user_pref("browser.urlbar.suggest.topsites", false); // Shortcuts (Top Sites)
```
***
### HTTPS-Only Mode
We already [block](https://github.com/yokoffing/Betterfox/blob/df5fc26a1bdccd30e01f3c1dfe69a09a2c050410/Securefox.js#L810-L827) HTTP subresources from loading on HTTPS pages and [attempt to upgrade](https://github.com/yokoffing/Betterfox/blob/df5fc26a1bdccd30e01f3c1dfe69a09a2c050410/Securefox.js#L545-L550) HTTP site navigation to HTTPS.