Update 'user.js'
This commit is contained in:
parent
3ac72239c9
commit
2c633ad789
29
user.js
29
user.js
|
@ -52,9 +52,15 @@ user_pref("browser.tabs.allowTabDetach", true);
|
|||
// -------------------------------------
|
||||
// Disable using the "Back" button to go back to the QuickDial page
|
||||
user_pref("browser.newtabpage.add_to_session_history", false);
|
||||
// -------------------------------------
|
||||
// Hide tabs (only one in use)
|
||||
// user_pref("browser.tabs.autoHide", true);
|
||||
// -------------------------------------
|
||||
// Tabs on top
|
||||
// user_pref(“browser.tabs.onTop", true);
|
||||
//
|
||||
// >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
|
||||
// GEOLOCATION ***/
|
||||
// GEOLOCATION
|
||||
// >>>>>>>>>>>>>>>>>>>>>
|
||||
// Disable Location-Aware Browsing
|
||||
user_pref("geo.enabled", false);
|
||||
|
@ -67,7 +73,7 @@ user_pref("browser.search.region", "US"); // [HIDDEN PREF]
|
|||
user_pref("browser.search.countryCode", "US"); // [HIDDEN PREF]
|
||||
//
|
||||
// >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
|
||||
// LANGUAGE / LOCALE ***/
|
||||
// LANGUAGE / LOCALE
|
||||
// >>>>>>>>>>>>>>>>>>>>>
|
||||
// Set preferred language for displaying web pages
|
||||
user_pref("intl.accept_languages", "en-US, en");
|
||||
|
@ -78,7 +84,7 @@ user_pref("intl.locale.matchOS", false);
|
|||
// Enforce US English locale regardless of the system locale
|
||||
user_pref("javascript.use_us_english_locale", true); // [HIDDEN PREF]
|
||||
// -------------------------------------
|
||||
// Set APP locale ***/
|
||||
// Set APP locale
|
||||
user_pref("general.useragent.locale", "en-US");
|
||||
//
|
||||
// >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
|
||||
|
@ -243,7 +249,7 @@ user_pref("places.history.enabled", false);
|
|||
// Control the sizes of default smart bookmarks categories
|
||||
// user_pref("browser.places.smartBookmarks.max", 1); // [HIDDEN PREF]
|
||||
// -------------------------------------
|
||||
// Unsubscribe to feeds
|
||||
// Defines whether an RSS indicator is displayed in the address bar
|
||||
// user_pref("browser.urlbar.rss", false);
|
||||
//
|
||||
// >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
|
||||
|
@ -571,14 +577,14 @@ user_pref("browser.link.open_newwindow.restriction", 0);
|
|||
// Block popup windows
|
||||
user_pref("dom.disable_open_during_load", true);
|
||||
// -------------------------------------
|
||||
// Limit events that can cause a popup [SETUP-WEB]
|
||||
// Limit events that can cause a popup
|
||||
user_pref("dom.popup_allowed_events", "click dblclick mousedown pointerdown");
|
||||
// -------------------------------------
|
||||
// Control whether content can be scrolled if a context menu is open
|
||||
user_pref("ui.menu.allow_content_scroll", true);
|
||||
// -------------------------------------
|
||||
// Place the browser window fully on a visible portion of the screen
|
||||
// user_pref("browser.sessionstore.exactPos", true); // [HIDDEN PREF]
|
||||
// Defines whether the restored browser session window is displayed at the same location when it was terminated in the last session
|
||||
user_pref("browser.sessionstore.exactPos", true); // [HIDDEN PREF]
|
||||
//
|
||||
// >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
|
||||
// WEB WORKERS
|
||||
|
@ -785,6 +791,9 @@ user_pref("browser.identity.display_punycode", 1);
|
|||
// -------------------------------------
|
||||
// Enable the use of HSTS (HTTP Strict Transport Security)
|
||||
user_pref("network.stricttransportsecurity.enabled", true);
|
||||
// -------------------------------------
|
||||
// Defines whether a padlock icon is shown on secure sites
|
||||
user_pref("browser.padlock.shown", true);
|
||||
//
|
||||
// >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
|
||||
// PERSISTENT STORAGE
|
||||
|
@ -898,6 +907,9 @@ user_pref("browser.startup.homepage_override.buildID", "20181001000000"); // Fir
|
|||
user_pref("network.http.useragent.global_override", "Mozilla/5.0 (X11; Linux x86_64; rv:78.0) Gecko/20100101 Firefox/78.0"); // Firefox ESR Agent
|
||||
user_pref("general.useragent.updates.url", "");
|
||||
// -------------------------------------
|
||||
// Sets a preferred language for spellchecking, overides document/element languages
|
||||
user_pref("spellchecker.dictionary.override", "");
|
||||
// -------------------------------------
|
||||
// AUS testing/override the app.update.url.override
|
||||
// user_pref("app.update.url.override", "");
|
||||
//
|
||||
|
@ -957,6 +969,9 @@ user_pref("dom.archivereader.enabled", false);
|
|||
// -------------------------------------
|
||||
// Resize other tabs when closing a tab
|
||||
// user_pref("browser.tabs.resize_immediately", true);
|
||||
// -------------------------------------
|
||||
// Defines whether animated lightweight themes (Personas) are allowed
|
||||
user_pref("lightweightThemes.animation.enabled", false);
|
||||
//
|
||||
// >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
|
||||
// WARNINGS
|
||||
|
|
Loading…
Reference in New Issue