1
0
mirror of https://github.com/yokoffing/Betterfox.git synced 2026-06-29 16:11:23 +05:30

Compare commits

...

7 Commits

Author SHA1 Message Date
yokoffing 47061df91e AI-enhanced tab groups 2025-08-20 15:49:23 -04:00
yokoffing 989102ba6c link previews 2025-08-20 15:09:24 -04:00
yokoffing 9f0007b709 disable AI chat 2025-08-20 15:04:11 -04:00
yokoffing c1cb56be74 disable AI chat 2025-08-20 15:03:32 -04:00
yokoffing 7bcdf3749a Prioritized Task Scheduling API, 2025-08-20 14:57:30 -04:00
yokoffing 84a2550ed9 privacy.trackingprotection.allow_list 2025-08-20 13:53:53 -04:00
yokoffing 6f3d8275d4 Update Securefox.js 2025-08-20 13:52:32 -04:00
4 changed files with 25 additions and 13 deletions
+9 -9
View File
@@ -78,6 +78,15 @@ user_pref("content.notify.interval", 100000); // (.10s); default=120000 (.12s)
// PREF: lazy load iframes
//user_pref("dom.iframe_lazy_loading.enabled", true); // DEFAULT [FF121+]
// PREF: Prioritized Task Scheduling API
// [1] https://github.com/yokoffing/Betterfox/issues/355
// [2] https://blog.mozilla.org/performance/2022/06/02/prioritized-task-scheduling-api-is-prototyped-in-nightly/
// [3] https://medium.com/airbnb-engineering/building-a-faster-web-experience-with-the-posttask-scheduler-276b83454e91
// [4] https://github.com/WICG/scheduling-apis/blob/main/explainers/prioritized-post-task.md
// [5] https://wicg.github.io/scheduling-apis/
// [6] https://caniuse.com/mdn-api_taskcontroller
//user_pref("dom.enable_web_task_scheduling", true); // DEFAULT [FF142+]
/****************************************************************************
* SECTION: GFX RENDERING TWEAKS *
****************************************************************************/
@@ -543,15 +552,6 @@ user_pref("network.predictor.enabled", false);
// [2] https://www.smashingmagazine.com/native-css-masonry-layout-css-grid/
user_pref("layout.css.grid-template-masonry-value.enabled", true);
// PREF: Prioritized Task Scheduling API [NIGHTLY]
// [1] https://github.com/yokoffing/Betterfox/issues/355
// [2] https://blog.mozilla.org/performance/2022/06/02/prioritized-task-scheduling-api-is-prototyped-in-nightly/
// [3] https://medium.com/airbnb-engineering/building-a-faster-web-experience-with-the-posttask-scheduler-276b83454e91
// [4] https://github.com/WICG/scheduling-apis/blob/main/explainers/prioritized-post-task.md
// [5] https://wicg.github.io/scheduling-apis/
// [6] https://caniuse.com/mdn-api_taskcontroller
//user_pref("dom.enable_web_task_scheduling", true);
/****************************************************************************
* SECTION: TAB UNLOAD *
****************************************************************************/
+9 -2
View File
@@ -99,12 +99,19 @@ user_pref("browser.privateWindowSeparation.enabled", false);
/****************************************************************************
* SECTION: AI *
****************************************************************************/
// PREF: LLM / AI master switch
// PREF: AI master switch
// [1] https://github.com/yokoffing/Betterfox/issues/416
user_pref("browser.ml.enable", false);
// PREF: AI chat
//user_pref("browser.ml.chat.enabled", false);
user_pref("browser.ml.chat.enabled", false);
// PREF: link previews
//user_pref("browser.ml.linkPreview.enabled", false);
// PREF: AI-enhanced tab groups
// [1] https://support.mozilla.org/kb/how-use-ai-enhanced-tab-groups
//user_pref("browser.tabs.groups.smart.enabled", false);
/****************************************************************************
* SECTION: COOKIE BANNER HANDLING *
+2 -2
View File
@@ -23,8 +23,8 @@
// [2] https://www.reddit.com/r/firefox/comments/l7xetb/network_priority_for_firefoxs_enhanced_tracking/gle2mqn/?web2x&context=3
user_pref("browser.contentblocking.category", "strict"); // [HIDDEN]
// [1] https://bugzilla.mozilla.org/show_bug.cgi?id=1970647
//user_pref('privacy.trackingprotection.allow_list.baseline.enabled", true); // DEFAULT [FF142+]
//user_pref('privacy.trackingprotection.allow_list.convenience.enabled", true); // DEFAULT [FF142+]
user_pref("privacy.trackingprotection.allow_list.baseline.enabled", true); // [FF142+]
user_pref("privacy.trackingprotection.allow_list.convenience.enabled", true); // [FF142+]
//user_pref("privacy.trackingprotection.enabled", true); // enabled with "Strict"
//user_pref("privacy.trackingprotection.pbmode.enabled", true); // DEFAULT
//user_pref("browser.contentblocking.customBlockList.preferences.ui.enabled", false); // DEFAULT
+5
View File
@@ -63,6 +63,8 @@ user_pref("layout.css.grid-template-masonry-value.enabled", true);
****************************************************************************/
/** TRACKING PROTECTION ***/
user_pref("browser.contentblocking.category", "strict");
user_pref("privacy.trackingprotection.allow_list.baseline.enabled", true);
user_pref("privacy.trackingprotection.allow_list.convenience.enabled", true);
user_pref("browser.download.start_downloads_in_tmp_dir", true);
user_pref("browser.helperApps.deleteTempFileOnExit", true);
user_pref("browser.uitour.enabled", false);
@@ -177,6 +179,7 @@ user_pref("browser.privateWindowSeparation.enabled", false); // WINDOWS
/** AI ***/
user_pref("browser.ml.enable", false);
user_pref("browser.ml.chat.enabled", false);
/** FULLSCREEN NOTICE ***/
user_pref("full-screen-api.transition-duration.enter", "0 0");
@@ -231,3 +234,5 @@ user_pref("layout.word_select.eat_space_to_next_word", false);