Compare commits

..

3 Commits

2 changed files with 11 additions and 9 deletions

View File

@ -137,9 +137,13 @@ defaultPref("browser.startup.homepage", "about:mozilla");
// https://codeberg.org/librewolf/settings/src/branch/master/librewolf.cfg begins // https://codeberg.org/librewolf/settings/src/branch/master/librewolf.cfg begins
//pref("browser.contentblocking.category", "strict"); /** [SECTION] CONTAINERS
// Aminda relies on AdNauseam * enable containers and show the settings to control them in the stock ui
lockPref("browser.contentblocking.category", "standard"); */
pref("privacy.userContext.enabled", true);
pref("privacy.userContext.ui.enabled", true);
pref("browser.contentblocking.category", "strict");
pref("privacy.partition.always_partition_third_party_non_cookie_storage", true); pref("privacy.partition.always_partition_third_party_non_cookie_storage", true);
pref("privacy.partition.always_partition_third_party_non_cookie_storage.exempt_sessionstorage", false); pref("privacy.partition.always_partition_third_party_non_cookie_storage.exempt_sessionstorage", false);
@ -340,12 +344,6 @@ pref("extensions.formautofill.addresses.enabled", false);
pref("extensions.formautofill.creditCards.enabled", false); pref("extensions.formautofill.creditCards.enabled", false);
pref("signon.formlessCapture.enabled", false); pref("signon.formlessCapture.enabled", false);
/** [SECTION] CONTAINERS
* enable containers and show the settings to control them in the stock ui
*/
pref("privacy.userContext.enabled", true);
pref("privacy.userContext.ui.enabled", true);
/** [SECTION] DEVTOOLS /** [SECTION] DEVTOOLS
* disable remote debugging. * disable remote debugging.
*/ */

View File

@ -139,6 +139,7 @@
"Method": "POST", "Method": "POST",
"Name": "DuckDuckGo Lite", "Name": "DuckDuckGo Lite",
"PostData": "q={searchTerms}", "PostData": "q={searchTerms}",
"SuggestURLTemplate": "https://start.duckduckgo.com/ac/?q={searchTerms}&type=list",
"URLTemplate": "https://duckduckgo.com/lite/?q={searchTerms}" "URLTemplate": "https://duckduckgo.com/lite/?q={searchTerms}"
}, },
{ {
@ -147,6 +148,7 @@
"Method": "GET", "Method": "GET",
"Name": "DuckDuckGo Start", "Name": "DuckDuckGo Start",
"PostData": "q={searchTerms}", "PostData": "q={searchTerms}",
"SuggestURLTemplate": "https://start.duckduckgo.com/ac/?q={searchTerms}&type=list",
"URLTemplate": "https://start.duckduckgo.com/?q={searchTerms}" "URLTemplate": "https://start.duckduckgo.com/?q={searchTerms}"
}, },
{ {
@ -155,6 +157,7 @@
"Method": "GET", "Method": "GET",
"Name": "Brave Search", "Name": "Brave Search",
"PostData": "q={searchTerms}", "PostData": "q={searchTerms}",
"SuggestURLTemplate": "https://search.brave.com/api/suggest?q={searchTerms}",
"URLTemplate": "https://search.brave.com/search?q={searchTerms}" "URLTemplate": "https://search.brave.com/search?q={searchTerms}"
}, },
{ {
@ -163,6 +166,7 @@
"Method": "GET", "Method": "GET",
"Name": "Brave Search Goggles", "Name": "Brave Search Goggles",
"PostData": "q={searchTerms}", "PostData": "q={searchTerms}",
"SuggestURLTemplate": "https://search.brave.com/api/suggest?q={searchTerms}",
"URLTemplate": "https://search.brave.com/goggles?q={searchTerms}" "URLTemplate": "https://search.brave.com/goggles?q={searchTerms}"
} }
], ],