-
-
Notifications
You must be signed in to change notification settings - Fork 9
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
proposed pref changes #9
Comments
Hey ! Once clarified, could we expect a PR from you (easier and quicker to comment and improve 👌) ? |
heck no, but all of them exist in TB - i checked using about:config and resetting each one to its default value so i assume they are used, else why would they exist? and even if a pref that's related to some functionality isn't used, how do we know it won't be in the future? if there's some other verification that needs to be done, let me know |
I personally don't know. Maybe 'cause FF & TB share the same core, but without really using each existing pref on their side. |
i agree - i don't have the technical ability to verify that every pref is actually connected to functionality or whether it's just a leftover from FF, and i'm not a coder, nor am i familiar with the inner workings of TB - that said, i'm not aware of any other option than the one you suggest which is to assume they are active - plus i would suspect that assuming a pref is used when it actually isn't wouldn't cause anything to explode |
several of the changes i'm proposing are because we aren't using TB as a web browser
/* 1211: control when to use OCSP fetching (to confirm current validity of certificates)
user_pref("security.OCSP.enabled", 0);
? change to 1
/* 1403: disable icon fonts (glyphs) and local fallback rendering
// user_pref("gfx.downloadable_fonts.enabled", false); // [FF41+]
// user_pref("gfx.downloadable_fonts.fallback_delay", -1);
? uncomment
/* 1405: disable WOFF2 (Web Open Font Format) [FF35+] ***/
// user_pref("gfx.downloadable_fonts.woff2.enabled", false);
? uncomment
/* 1601: ALL: control when images/links send a referer
// user_pref("network.http.sendRefererHeader", 2); // [DEFAULT: 2]
? uncomment, set 0
/* 1606: ALL: set the default Referrer Policy [FF59+]
// user_pref("network.http.referer.defaultPolicy", 3); // [DEFAULT: 3]
// user_pref("network.http.referer.defaultPolicy.pbmode", 2); // [DEFAULT: 2]
? uncomment, set 0
/* 2212: limit events that can cause a popup [SETUP-WEB]
user_pref("dom.popup_allowed_events", "click dblclick");
? set ""
/*** [SECTION 2500]: HARDWARE FINGERPRINTING ***/
? enable all these prefs
/* 2662: disable webextension restrictions on certain mozilla domains (also see 4503) [FF60+]
// user_pref("extensions.webextensions.restrictedDomains", "");
? uncomment
2701: disable 3rd-party cookies and site-data [SETUP-WEB]
? "3rd-party" should be removed
/* 2710: disable DOM (Document Object Model) Storage
// user_pref("dom.storage.enabled", false);
? uncomment
/* 2750: disable Storage API [FF51+]
// user_pref("dom.storageManager.enabled", false);
? uncomment
/* 6206: Disable calendar integration ***/
user_pref("mail.calendar-integration.opt-out", false);
? what does this do exactly? disable cal integration, or enable/disable a prompt for integration?
see: https://bugzilla.mozilla.org/show_bug.cgi?id=1130852
The text was updated successfully, but these errors were encountered: