mirror of
https://github.com/yokoffing/Betterfox.git
synced 2026-06-12 15:40:48 +05:30
Updated Optional Hardening (markdown)
+11
-1
@@ -39,7 +39,7 @@ Disable saving passwords, credit cards, and addresses if you use a password mana
|
|||||||
user_pref("signon.rememberSignons", false);
|
user_pref("signon.rememberSignons", false);
|
||||||
```
|
```
|
||||||
|
|
||||||
#### Address & credit card
|
#### Addresses & credit cards
|
||||||
* `☰` *→ Settings → Privacy & Security → Forms and Autofill*
|
* `☰` *→ Settings → Privacy & Security → Forms and Autofill*
|
||||||
```javascript
|
```javascript
|
||||||
// PREF: disable address and credit card manager
|
// 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
|
### 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.
|
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.
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user