1
0
mirror of https://github.com/arkenfox/user.js.git synced 2026-06-29 15:52:06 +05:30

Compare commits

...

4 Commits

Author SHA1 Message Date
Thorin-Oakenpants 8cf514d4ad FF140 deprecated 2025-08-12 06:51:52 +00:00
Thorin-Oakenpants 83e7b6e9a3 FF140 deprecated 2025-08-12 06:43:54 +00:00
Thorin-Oakenpants 11e3a2384b disable 2635 until FF142
added in FF139 but fixes landed in 140 + 141 including a crash. enabled in 142+ nightly, we'll follow suit when we do an arkenfox 142
2025-08-12 05:22:03 +00:00
Thorin-Oakenpants f217122f0d 2635: isolateContentScriptResources 2025-08-12 05:12:59 +00:00
2 changed files with 14 additions and 6 deletions
+3 -1
View File
@@ -6,7 +6,7 @@
There is an archived version at https://github.com/arkenfox/user.js/issues/123
if you want the full list since jesus
Last updated: 5-March-2025
Last updated: 12-August-2025
Instructions:
- [optional] close Firefox and backup your profile
@@ -36,6 +36,8 @@
const aPREFS = [
/* DEPRECATED */
/* 129-140 */
'browser.shopping.experience2023.enabled', // 140
'browser.urlbar.pocket.featureGate', // 140
'webchannel.allowObject.urlWhitelist', // 132
/* 116-128 */
'browser.contentanalysis.default_allow', // 127
+11 -5
View File
@@ -121,9 +121,6 @@ user_pref("extensions.htmlaboutaddons.recommendations.enabled", false);
* [SETTING] Privacy & Security>Firefox Data Collection and Use>Allow personalized extension recommendations
* [1] https://support.mozilla.org/kb/personalized-extension-recommendations ***/
user_pref("browser.discovery.enabled", false);
/* 0323: disable shopping experience [FF116+]
* [1] https://bugzilla.mozilla.org/show_bug.cgi?id=1840156#c0 ***/
user_pref("browser.shopping.experience2023.enabled", false); // [DEFAULT: false]
/** ACTIVITY STREAM ***/
/* 0335: disable Firefox Home (Activity Stream) telemetry ***/
@@ -287,7 +284,6 @@ user_pref("browser.urlbar.trending.featureGate", false);
user_pref("browser.urlbar.addons.featureGate", false); // [FF115+]
user_pref("browser.urlbar.fakespot.featureGate", false); // [FF130+] [DEFAULT: false]
user_pref("browser.urlbar.mdn.featureGate", false); // [FF117+] [HIDDEN PREF]
user_pref("browser.urlbar.pocket.featureGate", false); // [FF116+] [DEFAULT: false]
user_pref("browser.urlbar.weather.featureGate", false); // [FF108+] [DEFAULT: true FF138+]
user_pref("browser.urlbar.yelp.featureGate", false); // [FF124+]
/* 0807: disable urlbar clipboard suggestions [FF118+] ***/
@@ -571,6 +567,8 @@ user_pref("browser.tabs.searchclipboardfor.middleclick", false); // [DEFAULT: fa
* [1] https://github.com/chromium/content_analysis_sdk */
user_pref("browser.contentanalysis.enabled", false); // [FF121+] [DEFAULT: false]
user_pref("browser.contentanalysis.default_result", 0); // [FF127+] [DEFAULT: 0]
/* 2635: disable referrer and storage access for resources injected by content scripts [FF139+] */
// user_pref("privacy.antitracking.isolateContentScriptResources", true);
/** DOWNLOADS ***/
/* 2651: enable user interaction for security by always asking where to download
@@ -1253,9 +1251,17 @@ user_pref("_user.js.parrot", "9999 syntax error: the parrot's shuffled off 'is m
/* ESR128.x still uses all the following prefs
// [NOTE] replace the * with a slash in the line above to re-enable active ones
// FF132
/* 2617: remove webchannel whitelist
// 2617: remove webchannel whitelist
// [-] https://bugzilla.mozilla.org/1275612
// user_pref("webchannel.allowObject.urlWhitelist", "");
// FF140
// 0323: disable shopping experience [FF116+]
// [-] https://bugzilla.mozilla.org/1964845
// [1] https://bugzilla.mozilla.org/show_bug.cgi?id=1840156#c0
user_pref("browser.shopping.experience2023.enabled", false); // [DEFAULT: false]
// 0806: disable urlbar suggestions
// [-] https://bugzilla.mozilla.org/1959497
user_pref("browser.urlbar.pocket.featureGate", false); // [FF116+] [DEFAULT: false]
// ***/
/* END: internal custom pref to test for syntax errors ***/