mirror of
https://github.com/yokoffing/Betterfox.git
synced 2026-06-12 15:40:48 +05:30
Compare commits
70 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 70a85d340f | |||
| 576f0607d4 | |||
| e75ac79230 | |||
| ad9202d320 | |||
| 014b19f541 | |||
| 660810a3ec | |||
| be865ca441 | |||
| f78fcc5a06 | |||
| 3af9ec001c | |||
| 70b7196e5d | |||
| ebdebcdffa | |||
| 95ccc5708c | |||
| 24a5863d64 | |||
| e8277879e3 | |||
| 4419403c40 | |||
| e52329312b | |||
| bdc1790d6e | |||
| 9df4528d22 | |||
| 5c1896f3d5 | |||
| e6dd0ebe8f | |||
| 8838b67142 | |||
| 7d12b26c9a | |||
| 9ec6fb0689 | |||
| db45443822 | |||
| 093c7c0434 | |||
| 8b05459c07 | |||
| 32e97e527c | |||
| b80a227b5a | |||
| 46174c0bcf | |||
| 89f70d4f6a | |||
| 22ac06cf59 | |||
| 5876a8e053 | |||
| 29590403f5 | |||
| ddc209c2dd | |||
| c8f0e736be | |||
| b421419426 | |||
| ac69c81e8a | |||
| 2977bb6b6a | |||
| 80f744f08c | |||
| 5d4ef3adcc | |||
| 083b0f00ba | |||
| 9da9f3a0f5 | |||
| 0c8ae78c46 | |||
| 63a47dc2f6 | |||
| 1a06cb1a47 | |||
| 49fcd8d56e | |||
| 70645f416a | |||
| 9bdf375a43 | |||
| b515362622 | |||
| 9fa7fc8eb1 | |||
| 7c5aeccecb | |||
| 6de5c00a68 | |||
| 137afcd1da | |||
| 8fb6ca57e3 | |||
| 443710b073 | |||
| f129f5579c | |||
| 83761b9f6e | |||
| fa6e4392d7 | |||
| 6a37456e40 | |||
| 4e44dc2820 | |||
| addacadd8e | |||
| 148f2ed8fd | |||
| 49ef3de496 | |||
| 925a72928a | |||
| 0d337058d2 | |||
| 75aa9eade2 | |||
| 45537a4d1e | |||
| c33bfec8d3 | |||
| 04c3184359 | |||
| f7f0d799ee |
-304
@@ -1,304 +0,0 @@
|
|||||||
|
|
||||||
/****************************************************************************************
|
|
||||||
* Fastfox *
|
|
||||||
* "Non ducor duco" *
|
|
||||||
* priority: speedy browsing *
|
|
||||||
* version: 113b *
|
|
||||||
* url: https://github.com/yokoffing/Betterfox *
|
|
||||||
***************************************************************************************/
|
|
||||||
|
|
||||||
// PREF: process count
|
|
||||||
// Process count used to be "# of CPU cores = processCount" starting with Firefox Quantum (2017).
|
|
||||||
// Since the introduction of Fission [2], increasing process count
|
|
||||||
// is more complicated than changing one pref [1].
|
|
||||||
// [1] https://firefox-source-docs.mozilla.org/dom/ipc/process_model.html#web-content-processes
|
|
||||||
// [2] https://github.com/yokoffing/Betterfox/blob/064f64ab5f0e8443ed6b127d91326d9c887cd15d/Securefox.js#L58-L64
|
|
||||||
//user_pref("dom.ipc.processCount", 8); // DEFAULT; Shared Web Content
|
|
||||||
//user_pref("dom.ipc.processCount.webIsolated", 4); // per-site; DEFAULT; Isolated Web Content
|
|
||||||
|
|
||||||
// PREF: initial paint delay
|
|
||||||
// How long FF will wait before rendering the page, in milliseconds
|
|
||||||
// Reduce the 5ms Firefox waits to render the page
|
|
||||||
// [1] https://bugzilla.mozilla.org/show_bug.cgi?id=1283302
|
|
||||||
// [2] https://docs.google.com/document/d/1BvCoZzk2_rNZx3u9ESPoFjSADRI0zIPeJRXFLwWXx_4/edit#heading=h.28ki6m8dg30z
|
|
||||||
user_pref("nglayout.initialpaint.delay", 0); // default=5; used to be 250
|
|
||||||
user_pref("nglayout.initialpaint.delay_in_oopif", 0); // default=5
|
|
||||||
|
|
||||||
// PREF: page reflow timer
|
|
||||||
// Rather than wait until a page has completely downloaded to display it to the user,
|
|
||||||
// web browsers will periodically render what has been received to that point.
|
|
||||||
// Because reflowing the page every time additional data is received slows down
|
|
||||||
// total page load time, a timer was added so that the page would not reflow too often.
|
|
||||||
// This preference specfies whether that timer is active.
|
|
||||||
// [1] https://kb.mozillazine.org/Content.notify.ontimer
|
|
||||||
// true = do not reflow pages at an interval any higher than that specified by content.notify.interval (default)
|
|
||||||
// false = reflow pages whenever new data is received
|
|
||||||
//user_pref("content.notify.ontimer", true); // DEFAULT
|
|
||||||
|
|
||||||
// PREF: notification interval (in microseconds) [to avoid layout thrashing]
|
|
||||||
// When Firefox is loading a page, it periodically reformats
|
|
||||||
// or "reflows" the page as it loads. The page displays new elements
|
|
||||||
// every 0.12 seconds by default. These redraws increase the total page load time.
|
|
||||||
// The default value provides good incremental display of content
|
|
||||||
// without causing an increase in page load time.
|
|
||||||
// [NOTE] Lowering the interval will increase responsiveness
|
|
||||||
// but also increase the total load time.
|
|
||||||
// [WARNING] If this value is set below 1/10 of a second, it starts
|
|
||||||
// to impact page load performance.
|
|
||||||
// [EXAMPLE] 100000 = .10s = 100 reflows/second
|
|
||||||
// [1] https://searchfox.org/mozilla-central/rev/c1180ea13e73eb985a49b15c0d90e977a1aa919c/modules/libpref/init/StaticPrefList.yaml#1824-1834
|
|
||||||
// [2] https://dev.opera.com/articles/efficient-javascript/?page=3#reflow
|
|
||||||
// [3] https://dev.opera.com/articles/efficient-javascript/?page=3#smoothspeed
|
|
||||||
user_pref("content.notify.interval", 100000); // (.10s); alt=500000 (.50s)
|
|
||||||
|
|
||||||
// PREF: frequency switch threshold [HIDDEN]
|
|
||||||
// Raising the value will make the application more responsive at the expense of page load time.
|
|
||||||
// [1] http://kb.mozillazine.org/Content.switch.threshold
|
|
||||||
// [2] https://old.reddit.com/r/firefox/comments/11m2yuh/comment/jbjxp8s/?context=3
|
|
||||||
//user_pref("content.interrupt.parsing", true); // [HIDDEN]
|
|
||||||
//user_pref("content.switch.threshold", 1000000); // alt=1500000; default=750000; [HIDDEN]
|
|
||||||
|
|
||||||
// PREF: set the minimum interval between session save operations
|
|
||||||
// Increasing this can help on older machines and some websites, as well as reducing writes
|
|
||||||
// [1] https://bugzilla.mozilla.org/1304389
|
|
||||||
// default=15000 (15s)
|
|
||||||
//user_pref("browser.sessionstore.interval", 30000); // (30s)
|
|
||||||
|
|
||||||
// PREF: control how tabs are loaded when a session is restored
|
|
||||||
// true=Tabs are not loaded until they are selected (default)
|
|
||||||
// false=Tabs begin to load immediately.
|
|
||||||
//user_pref("browser.sessionstore.restore_on_demand", true); // DEFAULT
|
|
||||||
//user_pref("browser.sessionstore.restore_pinned_tabs_on_demand", true);
|
|
||||||
//user_pref("browser.sessionstore.restore_tabs_lazily", true); // DEFAULT
|
|
||||||
|
|
||||||
// PREF: disable preSkeletonUI on startup
|
|
||||||
user_pref("browser.startup.preXulSkeletonUI", false);
|
|
||||||
|
|
||||||
/****************************************************************************
|
|
||||||
* SECTION: EXPERIMENTAL *
|
|
||||||
****************************************************************************/
|
|
||||||
|
|
||||||
// PREF: CSS Masonry Layout [NIGHTLY]
|
|
||||||
// [1] https://developer.mozilla.org/en-US/docs/Web/CSS/CSS_Grid_Layout/Masonry_Layout
|
|
||||||
user_pref("layout.css.grid-template-masonry-value.enabled", true);
|
|
||||||
|
|
||||||
// PREF: CSS Animation Composition [NIGHTLY]
|
|
||||||
// [1] https://bugzilla.mozilla.org/show_bug.cgi?id=1785329
|
|
||||||
// [2] https://bugzilla.mozilla.org/show_bug.cgi?id=1293490
|
|
||||||
// [3] https://developer.mozilla.org/en-US/docs/Web/CSS/animation-composition
|
|
||||||
user_pref("layout.css.animation-composition.enabled", true);
|
|
||||||
|
|
||||||
// PREF: Prioritized Task Scheduling API [NIGHTLY]
|
|
||||||
// [1] https://blog.mozilla.org/performance/2022/06/02/prioritized-task-scheduling-api-is-prototyped-in-nightly/
|
|
||||||
// [2] https://medium.com/airbnb-engineering/building-a-faster-web-experience-with-the-posttask-scheduler-276b83454e91
|
|
||||||
user_pref("dom.enable_web_task_scheduling", true);
|
|
||||||
|
|
||||||
// PREF: inert HTML attribute [NIGHTLY]
|
|
||||||
//user_pref("html5.inert.enabled", true);
|
|
||||||
|
|
||||||
// PREF: container query length units [NIGHTLY]
|
|
||||||
//user_pref("layout.css.container-queries.enabled", true);
|
|
||||||
|
|
||||||
// PREF: scroll-linked animations [NIGHTLY]
|
|
||||||
//user_pref("layout.css.scroll-driven-animations.enabled", true);
|
|
||||||
|
|
||||||
// PREF: HTML Sanitizer API [NIGHTLY]
|
|
||||||
//user_pref("dom.security.sanitizer.enabled", true);
|
|
||||||
|
|
||||||
// PREF: Clear-Site-Data: "cache" header [NIGHTLY]
|
|
||||||
// [1] https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Clear-Site-Data
|
|
||||||
//user_pref("privacy.clearsitedata.cache.enabled", true);
|
|
||||||
|
|
||||||
// PREF: Shadowrealms [NIGHTLY]
|
|
||||||
// [1] https://github.com/tc39/proposal-shadowrealm/blob/main/explainer.md#introduction
|
|
||||||
//user_pref("javascript.options.experimental.shadow_realms", true);
|
|
||||||
|
|
||||||
// PREF: Wasm GC + References [NIGHTLY]
|
|
||||||
// [1] https://github.com/WebAssembly/gc/blob/main/proposals/gc/Overview.md
|
|
||||||
// [2] https://github.com/WebAssembly/function-references/blob/master/proposals/function-references/Overview.md
|
|
||||||
//user_pref("javascript.options.wasm_gc", true);
|
|
||||||
//user_pref("javascript.options.wasm_function_references", true);
|
|
||||||
|
|
||||||
// PREF: import assertions [NIGHTLY]
|
|
||||||
//user_pref("javascript.options.experimental.import_assertions", true);
|
|
||||||
|
|
||||||
// PREF: Array.fromAsync [NIGHTLY]
|
|
||||||
// [1] https://bugzilla.mozilla.org/show_bug.cgi?id=1795452
|
|
||||||
//user_pref("javascript.options.experimental.array_grouping", true);
|
|
||||||
//user_pref("javascript.options.experimental.enable_change_array_by_copy", true);
|
|
||||||
//user_pref("javascript.options.experimental.enable_array_from_async", true);
|
|
||||||
|
|
||||||
// PREF: indexedDB
|
|
||||||
// [1] https://bugzilla.mozilla.org/show_bug.cgi?id=1112702
|
|
||||||
//user_pref("dom.indexedDB.preprocessing", true);
|
|
||||||
//user_pref("dom.indexedDB.experimental", false); // DEFAULT
|
|
||||||
|
|
||||||
// PREF: WebGPU [HIGHLY EXPERIMENTAL!]
|
|
||||||
// [WARNING] Do not enable unless you are a web developer!
|
|
||||||
// [1] https://bugzilla.mozilla.org/show_bug.cgi?id=1746245
|
|
||||||
// [2] https://developer.chrome.com/docs/web-platform/webgpu/
|
|
||||||
// [3] https://github.com/gpuweb/gpuweb/wiki/Implementation-Status
|
|
||||||
// [4] https://hacks.mozilla.org/2020/04/experimental-webgpu-in-firefox/
|
|
||||||
//user_pref("dom.webgpu.enabled", true);
|
|
||||||
//user_pref("gfx.webgpu.force-enabled", true);
|
|
||||||
|
|
||||||
// PREF: Animated AVIF [NIGHTLY]
|
|
||||||
// [1] https://codecalamity.com/animated-avif-is-finally-coming-to-firefox/
|
|
||||||
//user_pref("image.avif.sequence.enabled", true);
|
|
||||||
|
|
||||||
// PREF: NVIDIA RTX Video Super Resolution for video overlay [WINDOWS]
|
|
||||||
// This is also a setting in NVIDIA's driver settings, so once this is
|
|
||||||
// stable, it should default to true.
|
|
||||||
// [1] https://bugzilla.mozilla.org/show_bug.cgi?id=1823135
|
|
||||||
//user_pref("gfx.webrender.super-resolution.nvidia", true);
|
|
||||||
|
|
||||||
/****************************************************************************
|
|
||||||
* SECTION: MAKE FIREFOX FAST *
|
|
||||||
* [NOTE] The following is not recommended for low-end machines *
|
|
||||||
* Credit for many of these: *
|
|
||||||
* https://gist.github.com/RubenKelevra/fd66c2f856d703260ecdf0379c4f59db *
|
|
||||||
* [NOTE] For best performance on older hardware, you will need to test *
|
|
||||||
* these settings individually. *
|
|
||||||
****************************************************************************/
|
|
||||||
|
|
||||||
/****************************************************************************
|
|
||||||
* SECTION: GFX RENDERING TWEAKS *
|
|
||||||
****************************************************************************/
|
|
||||||
|
|
||||||
// PREF: Webrender tweaks
|
|
||||||
// [1] https://searchfox.org/mozilla-central/rev/6e6332bbd3dd6926acce3ce6d32664eab4f837e5/modules/libpref/init/StaticPrefList.yaml#6202-6219
|
|
||||||
// [2] https://hacks.mozilla.org/2017/10/the-whole-web-at-maximum-fps-how-webrender-gets-rid-of-jank/
|
|
||||||
// [3] https://www.troddit.com/r/firefox/comments/tbphok/is_setting_gfxwebrenderprecacheshaders_to_true/i0bxs2r/
|
|
||||||
// [4] https://www.troddit.com/r/firefox/comments/z5auzi/comment/ixw65gb?context=3
|
|
||||||
user_pref("gfx.webrender.all", true); // enables WR (GPU) + additional features
|
|
||||||
user_pref("gfx.webrender.precache-shaders", true);
|
|
||||||
user_pref("gfx.webrender.compositor", true);
|
|
||||||
//user_pref("gfx.webrender.compositor.force-enabled", true); // enforce
|
|
||||||
user_pref("layers.gpu-process.enabled", true);
|
|
||||||
//user_pref("layers.gpu-process.force-enabled", true); // enforce
|
|
||||||
user_pref("media.hardware-video-decoding.enabled", true);
|
|
||||||
//user_pref("media.hardware-video-decoding.force-enabled", true); // enforce
|
|
||||||
|
|
||||||
// PREF: if your hardware doesn't support Webrender, you can fallback to Webrender's software renderer
|
|
||||||
// [1] https://www.ghacks.net/2020/12/14/how-to-find-out-if-webrender-is-enabled-in-firefox-and-how-to-enable-it-if-it-is-not/
|
|
||||||
//user_pref("gfx.webrender.enabled", true);
|
|
||||||
//user_pref("gfx.webrender.software", true); // Webrender uses the CPU and not the GPU
|
|
||||||
//user_pref("gfx.webrender.software.opengl", true); // [LINUX]
|
|
||||||
//user_pref("media.ffmpeg.vaapi.enabled", true); // [LINUX]
|
|
||||||
|
|
||||||
// PREF: GPU-accelerated Canvas2D
|
|
||||||
// [WARNING] May break PDF rendering on Surface Pro devices [2]
|
|
||||||
// [1] https://bugzilla.mozilla.org/show_bug.cgi?id=1739448
|
|
||||||
// [2] https://github.com/yokoffing/Betterfox/issues/153
|
|
||||||
user_pref("gfx.canvas.accelerated", true); // DEFAULT on macOS and Linux v.110
|
|
||||||
user_pref("gfx.canvas.accelerated.cache-items", 32768);
|
|
||||||
user_pref("gfx.canvas.accelerated.cache-size", 4096);
|
|
||||||
user_pref("gfx.content.skia-font-cache-size", 80);
|
|
||||||
|
|
||||||
// PREF: image tweaks
|
|
||||||
user_pref("image.cache.size", 10485760);
|
|
||||||
user_pref("image.mem.decode_bytes_at_a_time", 131072); // alt=65536; preferred=262144; chunk size for calls to the image decoders
|
|
||||||
user_pref("image.mem.shared.unmap.min_expiration_ms", 120000); // default=60000; minimum timeout to unmap shared surfaces since they have been last used
|
|
||||||
|
|
||||||
// PREF: increase media cache
|
|
||||||
user_pref("media.memory_cache_max_size", 1048576); // alt=512000; also in Securefox (inactive there)
|
|
||||||
user_pref("media.memory_caches_combined_limit_kb", 2560000); // preferred=3145728; // default=524288
|
|
||||||
//user_pref("media.memory_caches_combined_limit_pc_sysmem", 20); // default=5
|
|
||||||
|
|
||||||
// PREF: decrease video buffering
|
|
||||||
// [NOTE] Does not affect videos over 720p since they use DASH playback [1]
|
|
||||||
// [1] https://lifehacker.com/preload-entire-youtube-videos-by-disabling-dash-playbac-1186454034
|
|
||||||
//user_pref("media.cache_size", 2048000); // default=512000
|
|
||||||
user_pref("media.cache_readahead_limit", 9000); // default=60; stop reading ahead when our buffered data is this many seconds ahead of the current playback
|
|
||||||
user_pref("media.cache_resume_threshold", 6000); // default=30; when a network connection is suspended, don't resume it until the amount of buffered data falls below this threshold (in seconds)
|
|
||||||
|
|
||||||
// PREF: disable AV1 for hardware decodeable videos
|
|
||||||
// AV1 uses software (CPU-based) decoding
|
|
||||||
// Firefox sometimes uses AV1 video decoding even to GPUs which do not support it
|
|
||||||
// [1] https://www.troddit.com/r/AV1/comments/s5xyph/youtube_av1_codec_have_worse_quality_than_old_vp9
|
|
||||||
//user_pref("media.av1.enabled", false);
|
|
||||||
|
|
||||||
/****************************************************************************
|
|
||||||
* SECTION: BROWSER CACHE *
|
|
||||||
****************************************************************************/
|
|
||||||
|
|
||||||
// PREF: disk cache
|
|
||||||
// [EXTENSION] https://addons.mozilla.org/en-US/firefox/addon/cache-longer/
|
|
||||||
// More efficient to keep the browser cache instead of
|
|
||||||
// having to re-download objects for the websites you visit frequently
|
|
||||||
//user_pref("browser.cache.disk.enable", true); // DEFAULT; overrides Securefox
|
|
||||||
//user_pref("browser.cache.disk.capacity", 1048576); // 1 GB disk cache; 8192000 = 8 GB
|
|
||||||
//user_pref("browser.cache.disk.smart_size.enabled", false); // disable adaptive cache size on disk
|
|
||||||
//user_pref("browser.cache.disk.max_entry_size", 51200); // DEFAULT
|
|
||||||
//user_pref("browser.cache.disk.metadata_memory_limit", 1024); // increase the memory capacity in Firefox, in order to load more pages, faster
|
|
||||||
//user_pref("browser.cache.max_shutdown_io_lag", 8); // number of seconds the cache spends writing pending data and closing files after shutdown has been signalled
|
|
||||||
//user_pref("browser.cache.frecency_half_life_hours", 6); // DEFAULT; sweep intervals, the half life used to re-compute cache entries frequency (in hours)
|
|
||||||
|
|
||||||
// PREF: increase memory cache size
|
|
||||||
// [1] https://www.makeuseof.com/tag/how-much-data-does-youtube-use/
|
|
||||||
//user_pref("browser.cache.memory.capacity", -1); // DEFAULT; 256000=256MB, 512000=512MB, 1024000=1GB, 2097152=2GB, 5242880=5GB, 8388608=8GB
|
|
||||||
user_pref("browser.cache.memory.max_entry_size", 153600); // alt=51200; preferred=327680 ; alt= -1 -> entries bigger than than 90% of the mem-cache are never cached
|
|
||||||
|
|
||||||
/****************************************************************************
|
|
||||||
* SECTION: NETWORK *
|
|
||||||
****************************************************************************/
|
|
||||||
|
|
||||||
// PREF: use bigger packets
|
|
||||||
// [1] https://www.mail-archive.com/support-seamonkey@lists.mozilla.org/msg74561.html
|
|
||||||
// [2] https://www.mail-archive.com/support-seamonkey@lists.mozilla.org/msg74570.html
|
|
||||||
user_pref("network.buffer.cache.size", 262144); // preferred=327680; default=32768
|
|
||||||
user_pref("network.buffer.cache.count", 128); // preferred=240; default=24
|
|
||||||
|
|
||||||
// PREF: increase the absolute number of HTTP connections
|
|
||||||
// [1] https://kb.mozillazine.org/Network.http.max-connections
|
|
||||||
// [2] https://kb.mozillazine.org/Network.http.max-persistent-connections-per-server
|
|
||||||
// [3] https://old.reddit.com/r/firefox/comments/11m2yuh/how_do_i_make_firefox_use_more_of_my_900_megabit/jbfmru6/
|
|
||||||
user_pref("network.http.max-connections", 1800); // default=900
|
|
||||||
user_pref("network.http.max-persistent-connections-per-server", 10); // default=6; download connections; anything above 10 is excessive
|
|
||||||
//user_pref("network.http.max-persistent-connections-per-proxy", 48); // default=32
|
|
||||||
//user_pref("network.http.max-urgent-start-excessive-connections-per-host", 6); // default=3
|
|
||||||
//user_pref("network.http.pacing.requests.min-parallelism", 18); // default=6
|
|
||||||
|
|
||||||
// PREF: increase DNS cache
|
|
||||||
// [NOTE] May be overridden by DNS resolver, especially if using TRR
|
|
||||||
//user_pref("network.dnsCacheEntries", 20000);
|
|
||||||
//user_pref("network.dnsCacheExpiration", 3600); // keep entries for 1 hour
|
|
||||||
//user_pref("network.dnsCacheExpirationGracePeriod", 240); // 4 minutes
|
|
||||||
|
|
||||||
// PREF: increase TLS token caching
|
|
||||||
user_pref("network.ssl_tokens_cache_capacity", 32768); // default=2048; more TLS token caching (fast reconnects)
|
|
||||||
|
|
||||||
/****************************************************************************
|
|
||||||
* SECTION: SPECULATIVE CONNECTIONS *
|
|
||||||
****************************************************************************/
|
|
||||||
|
|
||||||
// [NOTE] FF85+ partitions (isolates) pooled connections, prefetch connections,
|
|
||||||
// pre-connect connections, speculative connections, TLS session identifiers,
|
|
||||||
// and other connections. We can take advantage of the speed of pre-connections
|
|
||||||
// while preserving privacy. Users may relax hardening to maximize their preference.
|
|
||||||
// For more information, see SecureFox: "PREF: State Paritioning" and "PREF: Network Partitioning" [1]
|
|
||||||
// [1] https://github.com/yokoffing/Betterfox/blob/e9621b0062914da5fdb5f83b8da64041965b7a50/Securefox.js#L74-L108
|
|
||||||
// [NOTE] To activate and increase network predictions, go to settings in uBlock Origin, and make this setting is DISABLED:
|
|
||||||
// - "Disable pre-fetching (to prevent any connection for blocked network requests)"
|
|
||||||
// [NOTE] Add prefs to "MY OVERRIDES" section and uncomment to enable them in your user.js.
|
|
||||||
|
|
||||||
// PREF: increase network predictions
|
|
||||||
//user_pref("network.http.speculative-parallel-limit", 18); // default=6; overrides SecureFox
|
|
||||||
//user_pref("network.dns.disablePrefetch", false); // overrides SecureFox
|
|
||||||
//user_pref("network.dns.disablePrefetchFromHTTPS", false);
|
|
||||||
//user_pref("network.early-hints.enabled", true);
|
|
||||||
//user_pref("network.early-hints.preconnect.enabled", true);
|
|
||||||
//user_pref("network.early-hints.preconnect.max_connections", 20); // FF113
|
|
||||||
//user_pref("browser.urlbar.speculativeConnect.enabled", true); // overrides SecureFox
|
|
||||||
//user_pref("browser.places.speculativeConnect.enabled", true); // overrides SecureFox
|
|
||||||
//user_pref("network.prefetch-next", true); // overrides SecureFox
|
|
||||||
//user_pref("network.predictor.enabled", true); // overrides SecureFox
|
|
||||||
//user_pref("network.predictor.enable-prefetch", true); // overrides SecureFox
|
|
||||||
//user_pref("network.predictor.enable-hover-on-ssl", true);
|
|
||||||
//user_pref("network.predictor.preresolve-min-confidence", 40); // default=60; alt=10
|
|
||||||
//user_pref("network.predictor.preconnect-min-confidence", 60); // default=90; alt=20
|
|
||||||
//user_pref("network.predictor.prefetch-min-confidence", 80); // default=100; alt=30
|
|
||||||
//user_pref("network.predictor.prefetch-force-valid-for", 3600); // default=10
|
|
||||||
//user_pref("network.predictor.prefetch-rolling-load-count", 120); // default=10
|
|
||||||
//user_pref("network.predictor.max-resources-per-entry", 250); // default=100
|
|
||||||
//user_pref("network.predictor.max-uri-length", 1000); // default=500
|
|
||||||
-527
@@ -1,527 +0,0 @@
|
|||||||
|
|
||||||
/****************************************************************************
|
|
||||||
* Peskyfox *
|
|
||||||
* "Aquila non capit muscas" *
|
|
||||||
* priority: remove annoyances *
|
|
||||||
* version: 115 *
|
|
||||||
* url: https://github.com/yokoffing/Betterfox *
|
|
||||||
***************************************************************************/
|
|
||||||
|
|
||||||
/****************************************************************************
|
|
||||||
* SECTION: MOZILLA UI *
|
|
||||||
****************************************************************************/
|
|
||||||
|
|
||||||
// PREF: choose what theme Firefox follows by default
|
|
||||||
// Dark (0), Light (1), System (2), or Browser (3) (default)
|
|
||||||
// [1] https://www.reddit.com/r/firefox/comments/rfj6yc/how_to_stop_firefoxs_dark_theme_from_overriding/hoe82i5/?context=3
|
|
||||||
user_pref("layout.css.prefers-color-scheme.content-override", 2);
|
|
||||||
|
|
||||||
// PREF: enable Firefox to use userChome, userContent, etc.
|
|
||||||
user_pref("toolkit.legacyUserProfileCustomizations.stylesheets", true);
|
|
||||||
|
|
||||||
// PREF: disable annoying update restart prompts
|
|
||||||
// Delay update available prompts for ~1 week
|
|
||||||
// Will still show green arrow in menu bar
|
|
||||||
user_pref("app.update.suppressPrompts", true);
|
|
||||||
|
|
||||||
// PREF: add compact mode back to options
|
|
||||||
user_pref("browser.compactmode.show", true);
|
|
||||||
|
|
||||||
// PREF: Mozilla VPN
|
|
||||||
// [1] https://github.com/yokoffing/Betterfox/issues/169
|
|
||||||
user_pref("browser.privatebrowsing.vpnpromourl", "");
|
|
||||||
//user_pref("browser.vpn_promo.enabled", false);
|
|
||||||
|
|
||||||
// PREF: disable about:addons' Recommendations pane (uses Google Analytics)
|
|
||||||
user_pref("extensions.getAddons.showPane", false); // HIDDEN
|
|
||||||
user_pref("extensions.htmlaboutaddons.recommendations.enabled", false);
|
|
||||||
|
|
||||||
// PREF: disable Firefox from asking to set as the default browser
|
|
||||||
// [1] https://github.com/yokoffing/Betterfox/issues/166
|
|
||||||
user_pref("browser.shell.checkDefaultBrowser", false);
|
|
||||||
|
|
||||||
// PREF: disable Extension Recommendations (CFR: "Contextual Feature Recommender")
|
|
||||||
// [1] https://support.mozilla.org/en-US/kb/extension-recommendations
|
|
||||||
user_pref("browser.newtabpage.activity-stream.asrouter.userprefs.cfr.addons", false);
|
|
||||||
user_pref("browser.newtabpage.activity-stream.asrouter.userprefs.cfr.features", false);
|
|
||||||
|
|
||||||
// PREF: hide "More from Mozilla" in Settings
|
|
||||||
user_pref("browser.preferences.moreFromMozilla", false);
|
|
||||||
|
|
||||||
// PREF: only show List All Tabs icon when needed
|
|
||||||
// true=always show tab overflow dropdown (FF106+ default)
|
|
||||||
// false=only display tab dropdown when there are too many tabs
|
|
||||||
// [1] https://www.ghacks.net/2022/10/19/how-to-hide-firefoxs-list-all-tabs-icon/
|
|
||||||
user_pref("browser.tabs.tabmanager.enabled", false);
|
|
||||||
|
|
||||||
// PREF: disable Warnings
|
|
||||||
//user_pref("browser.tabs.warnOnClose", false); // DEFAULT [FF94+]
|
|
||||||
//user_pref("browser.tabs.warnOnCloseOtherTabs", false);
|
|
||||||
//user_pref("browser.tabs.warnOnOpen", false);
|
|
||||||
//user_pref("browser.aboutConfig.showWarning", false);
|
|
||||||
|
|
||||||
// PREF: disable fullscreen delay and notice
|
|
||||||
user_pref("full-screen-api.transition-duration.enter", "0 0");
|
|
||||||
user_pref("full-screen-api.transition-duration.leave", "0 0");
|
|
||||||
user_pref("full-screen-api.warning.delay", -1);
|
|
||||||
user_pref("full-screen-api.warning.timeout", 0);
|
|
||||||
|
|
||||||
// PREF: disable welcome notices
|
|
||||||
//user_pref("browser.startup.homepage_override.mstone", "ignore"); // What's New page after updates; master switch
|
|
||||||
user_pref("browser.aboutwelcome.enabled", false); // disable Intro screens
|
|
||||||
//user_pref("startup.homepage_welcome_url", "");
|
|
||||||
//user_pref("startup.homepage_welcome_url.additional", "");
|
|
||||||
//user_pref("startup.homepage_override_url", ""); // What's New page after updates
|
|
||||||
|
|
||||||
// PREF: disable "What's New" toolbar icon [FF69+]
|
|
||||||
//user_pref("browser.messaging-system.whatsNewPanel.enabled", false);
|
|
||||||
|
|
||||||
// PREF: show all matches in Findbar
|
|
||||||
user_pref("findbar.highlightAll", true);
|
|
||||||
|
|
||||||
// PREF: disable middle mouse click opening links from clipboard
|
|
||||||
// [1] https://gitlab.torproject.org/tpo/applications/tor-browser/-/issues/10089
|
|
||||||
user_pref("middlemouse.contentLoadURL", false);
|
|
||||||
|
|
||||||
// PREF: attempt to remove ugly border drawn around links when clicked
|
|
||||||
//user_pref("accessibility.mouse_focuses_formcontrol", 0);
|
|
||||||
// The above should work, but you may need to add:
|
|
||||||
//user_pref("browser.display.focus_ring_style", 0);
|
|
||||||
//user_pref("browser.display.focus_ring_width", 0);
|
|
||||||
|
|
||||||
// Private Browsing changes [FF106+]
|
|
||||||
// PREF: disable private windows being separate from normal windows in taskbar [WINDOWS]
|
|
||||||
//user_pref("browser.privateWindowSeparation.enabled", false);
|
|
||||||
|
|
||||||
// PREF: disable "private window" indicator in tab bar [FF106+]
|
|
||||||
user_pref("browser.privatebrowsing.enable-new-indicator", false);
|
|
||||||
|
|
||||||
// PREF: disable always using dark theme for private browsing windows [FF106+]
|
|
||||||
//user_pref("browser.theme.dark-private-windows", false);
|
|
||||||
|
|
||||||
// PREF: Firefox Translations [NIGHTLY ONLY]
|
|
||||||
// Visit about:translations to translate your own text as well
|
|
||||||
// [1] https://blog.nightly.mozilla.org/2023/06/01/firefox-translations-and-other-innovations-these-weeks-in-firefox-issue-139/
|
|
||||||
//user_pref("browser.translations.enable", true); // DEFAULT
|
|
||||||
//user_pref("browser.translations.autoTranslate", true);
|
|
||||||
//user_pref("browser.translations.alwaysTranslateLanguages", "");
|
|
||||||
|
|
||||||
/****************************************************************************
|
|
||||||
* SECTION: FONT APPEARANCE *
|
|
||||||
****************************************************************************/
|
|
||||||
|
|
||||||
// PREF: smoother font
|
|
||||||
// [1] https://old.reddit.com/r/firefox/comments/wvs04y/windows_11_firefox_v104_font_rendering_different/?context=3
|
|
||||||
//user_pref("gfx.webrender.quality.force-subpixel-aa-where-possible", true);
|
|
||||||
|
|
||||||
// PREF: use DirectWrite everywhere like Chrome [WINDOWS]
|
|
||||||
// [1] https://kb.mozillazine.org/Thunderbird_6.0,_etc.#Font_rendering_and_performance_issues
|
|
||||||
// [2] https://old.reddit.com/r/firefox/comments/wvs04y/comment/ilklzy1/?context=3
|
|
||||||
//user_pref("gfx.font_rendering.cleartype_params.rendering_mode", 5);
|
|
||||||
//user_pref("gfx.font_rendering.cleartype_params.cleartype_level", 100);
|
|
||||||
//user_pref("gfx.font_rendering.cleartype_params.force_gdi_classic_for_families", "");
|
|
||||||
//user_pref("gfx.font_rendering.cleartype_params.force_gdi_classic_max_size", 6);
|
|
||||||
//user_pref("gfx.font_rendering.directwrite.use_gdi_table_loading", false);
|
|
||||||
// Some users find these helpful:
|
|
||||||
//user_pref("gfx.font_rendering.cleartype_params.gamma", 1750);
|
|
||||||
//user_pref("gfx.font_rendering.cleartype_params.enhanced_contrast", 100);
|
|
||||||
//user_pref("gfx.font_rendering.cleartype_params.pixel_structure", 1);
|
|
||||||
|
|
||||||
// PREF: use macOS Appearance Panel text smoothing setting when rendering text [macOS]
|
|
||||||
//user_pref("gfx.use_text_smoothing_setting", true);
|
|
||||||
|
|
||||||
/****************************************************************************
|
|
||||||
* SECTION: URL BAR *
|
|
||||||
****************************************************************************/
|
|
||||||
|
|
||||||
// PREF: URL bar suggestions (bookmarks, history, open tabs) / dropdown options in the URL bar
|
|
||||||
// user_pref("browser.urlbar.suggest.bookmarks", true);
|
|
||||||
user_pref("browser.urlbar.suggest.engines", false);
|
|
||||||
//user_pref("browser.urlbar.suggest.history", false);
|
|
||||||
//user_pref("browser.urlbar.suggest.openpage", true);
|
|
||||||
//user_pref("browser.urlbar.suggest.quickactions", false); // [NIGHTLY]
|
|
||||||
//user_pref("browser.urlbar.suggest.searches", false);
|
|
||||||
//user_pref("browser.urlbar.suggest.weather", true); // DEFAULT [FF108]
|
|
||||||
// Disable dropdown suggestions with empty query:
|
|
||||||
user_pref("browser.urlbar.suggest.topsites", false);
|
|
||||||
// enable helpful features:
|
|
||||||
user_pref("browser.urlbar.suggest.calculator", true);
|
|
||||||
user_pref("browser.urlbar.unitConversion.enabled", true);
|
|
||||||
|
|
||||||
// PREF: Adaptive History Autofill
|
|
||||||
// [1] https://docs.google.com/document/u/1/d/e/2PACX-1vRBLr_2dxus-aYhZRUkW9Q3B1K0uC-a0qQyE3kQDTU3pcNpDHb36-Pfo9fbETk89e7Jz4nkrqwRhi4j/pub
|
|
||||||
//user_pref("browser.urlbar.autoFill", true); // [DEFAULT]
|
|
||||||
//user_pref("browser.urlbar.autoFill.adaptiveHistory.enabled", false);
|
|
||||||
|
|
||||||
// PREF: Quick Actions in the URL Bar
|
|
||||||
// [1] https://www.ghacks.net/2022/07/19/mozilla-is-testing-quick-actions-in-firefoxs-address-bar/
|
|
||||||
//user_pref("browser.urlbar.quickactions.enabled", false);
|
|
||||||
//user_pref("browser.urlbar.shortcuts.quickactions", false);
|
|
||||||
|
|
||||||
// PREF: Address bar / URL bar dropdown results
|
|
||||||
// This value controls the total number of entries to appear in the location bar dropdown.
|
|
||||||
// [NOTE] Items (bookmarks/history/openpages) with a high "frequency"/"bonus" will always
|
|
||||||
// be displayed (no we do not know how these are calculated or what the threshold is),
|
|
||||||
// and this does not affect the search by search engine suggestion.
|
|
||||||
// default=10, disable=0
|
|
||||||
//user_pref("browser.urlbar.maxRichResults", 1);
|
|
||||||
|
|
||||||
// PREF: do not show search terms in address bar instead of the URL [FF113+]
|
|
||||||
//user_pref("browser.urlbar.showSearchTerms.enabled", false);
|
|
||||||
|
|
||||||
/****************************************************************************
|
|
||||||
* SECTION: AUTOPLAY *
|
|
||||||
****************************************************************************/
|
|
||||||
|
|
||||||
// PREF: do not autoplay media audio
|
|
||||||
// [NOTE] You can set exceptions under site permissions
|
|
||||||
// [SETTING] Privacy & Security>Permissions>Autoplay>Settings>Default for all websites
|
|
||||||
// 0=Allow all, 1=Block non-muted media (default), 5=Block all
|
|
||||||
//user_pref("media.autoplay.default", 1); // DEFAULT
|
|
||||||
//user_pref("media.block-autoplay-until-in-foreground", true); // DEFAULT
|
|
||||||
|
|
||||||
// PREF: disable autoplay of HTML5 media if you interacted with the site [FF78+]
|
|
||||||
// 0=sticky (default), 1=transient, 2=user
|
|
||||||
// Firefox's Autoplay Policy Documentation (PDF) is linked below via SUMO
|
|
||||||
// [NOTE] If you have trouble with some video sites (e.g. YouTube), then add an exception (see previous PREF)
|
|
||||||
// [1] https://support.mozilla.org/questions/1293231
|
|
||||||
//user_pref("media.autoplay.blocking_policy", 2);
|
|
||||||
|
|
||||||
/****************************************************************************
|
|
||||||
* SECTION: NEW TAB PAGE *
|
|
||||||
****************************************************************************/
|
|
||||||
|
|
||||||
// PREF: open windows/tabs from last session
|
|
||||||
// 0=blank, 1=home, 2=last visited page, 3=resume previous session
|
|
||||||
// [NOTE] Session Restore is cleared with history and not used in Private Browsing mode
|
|
||||||
// [SETTING] General>Startup>Restore previous session
|
|
||||||
//user_pref("browser.startup.page", 3);
|
|
||||||
|
|
||||||
// PREF: set HOME+NEWWINDOW page to blank tab
|
|
||||||
// about:home=Activity Stream, custom URL, about:blank
|
|
||||||
// [SETTING] Home>New Windows and Tabs>Homepage and new windows
|
|
||||||
// [Custom URLs] Set two or more websites in Home Page Field – delimited by |
|
|
||||||
// [1] https://support.mozilla.org/en-US/questions/1271888#answer-1262899
|
|
||||||
//user_pref("browser.startup.homepage", "about:blank");
|
|
||||||
|
|
||||||
// PREF: set NEWTAB page to blank tab
|
|
||||||
// true=Firefox Home, false=blank page
|
|
||||||
// [SETTING] Home>New Windows and Tabs>New tabs
|
|
||||||
//user_pref("browser.newtabpage.enabled", false);
|
|
||||||
|
|
||||||
// PREF: Home / New Tab page items
|
|
||||||
// [SETTINGS] Home>Firefox Home Content
|
|
||||||
// [1] https://github.com/arkenfox/user.js/issues/1556
|
|
||||||
//user_pref("browser.newtabpage.activity-stream.discoverystream.enabled", false); // unnecessary?
|
|
||||||
//user_pref("browser.newtabpage.activity-stream.showSearch", true); // NTP Web Search [DEFAULT]
|
|
||||||
user_pref("browser.newtabpage.activity-stream.feeds.topsites", false); // Shortcuts
|
|
||||||
//user_pref("browser.newtabpage.activity-stream.showSponsoredTopSites", false); // Sponsored shortcuts [FF83+]
|
|
||||||
user_pref("browser.newtabpage.activity-stream.feeds.section.topstories", false); // Recommended by Pocket
|
|
||||||
//user_pref("browser.newtabpage.activity-stream.showSponsored", false); // Sponsored Stories [FF58+]
|
|
||||||
//user_pref("browser.newtabpage.activity-stream.feeds.section.highlights", false); // Recent Activity [DEFAULT]
|
|
||||||
//user_pref("browser.newtabpage.activity-stream.section.highlights.includeBookmarks", false);
|
|
||||||
//user_pref("browser.newtabpage.activity-stream.section.highlights.includeDownloads", false);
|
|
||||||
//user_pref("browser.newtabpage.activity-stream.section.highlights.includePocket", false);
|
|
||||||
//user_pref("browser.newtabpage.activity-stream.section.highlights.includeVisited", false);
|
|
||||||
//user_pref("browser.newtabpage.activity-stream.feeds.snippets", false); // [DEFAULT]
|
|
||||||
|
|
||||||
// PREF: keep search in the search box; prevent from jumping to address bar
|
|
||||||
// [1] https://www.reddit.com/r/firefox/comments/oxwvbo/firefox_start_page_search_options/
|
|
||||||
//user_pref("browser.newtabpage.activity-stream.improvesearch.handoffToAwesomebar", false);
|
|
||||||
|
|
||||||
// PREF: Firefox logo to always show
|
|
||||||
//user_pref("browser.newtabpage.activity-stream.logowordmark.alwaysVisible", true); // DEFAULT
|
|
||||||
|
|
||||||
// PREF: Bookmarks Toolbar visibility
|
|
||||||
// always, never, or newtab
|
|
||||||
//user_pref("browser.toolbars.bookmarks.visibility", "newtab"); // DEFAULT
|
|
||||||
|
|
||||||
/******************************************************************************
|
|
||||||
* SECTION: POCKET *
|
|
||||||
******************************************************************************/
|
|
||||||
|
|
||||||
// PREF: Disable built-in Pocket extension
|
|
||||||
user_pref("extensions.pocket.enabled", false);
|
|
||||||
//user_pref("extensions.pocket.api"," ");
|
|
||||||
//user_pref("extensions.pocket.oAuthConsumerKey", " ");
|
|
||||||
//user_pref("extensions.pocket.site", " ");
|
|
||||||
|
|
||||||
/******************************************************************************
|
|
||||||
* SECTION: DOWNLOADS *
|
|
||||||
******************************************************************************/
|
|
||||||
|
|
||||||
// PREF: choose download location
|
|
||||||
// [SETTING] To set your default "downloads": General>Downloads>Save files to...
|
|
||||||
// 0=desktop, 1=downloads (default), 2=last used
|
|
||||||
//user_pref("browser.download.folderList", 2);
|
|
||||||
|
|
||||||
// PREF: Enforce user interaction for security by always asking where to download
|
|
||||||
// [SETTING] General>Downloads>Always ask you where to save files
|
|
||||||
// false=the user is asked what to do
|
|
||||||
user_pref("browser.download.useDownloadDir", false);
|
|
||||||
//user_pref("browser.download.dir", "C:\Users\<YOUR_USERNAME>\AppData\Local\Temp"); // [WINDOWS]
|
|
||||||
|
|
||||||
// PREF: disable downloads panel opening on every download
|
|
||||||
user_pref("browser.download.alwaysOpenPanel", false);
|
|
||||||
|
|
||||||
// PREF: Disable adding downloads to the system's "recent documents" list
|
|
||||||
user_pref("browser.download.manager.addToRecentDocs", false);
|
|
||||||
|
|
||||||
// PREF: enable user interaction for security by always asking how to handle new mimetypes
|
|
||||||
// [SETTING] General>Files and Applications>What should Firefox do with other files
|
|
||||||
user_pref("browser.download.always_ask_before_handling_new_types", true);
|
|
||||||
|
|
||||||
// PREF: autohide the downloads button
|
|
||||||
//user_pref("browser.download.autohideButton", true); // DEFAULT
|
|
||||||
|
|
||||||
/****************************************************************************
|
|
||||||
* SECTION: PDF *
|
|
||||||
****************************************************************************/
|
|
||||||
|
|
||||||
// PREF: enforce Firefox's built-in PDF reader
|
|
||||||
// This setting controls if the option "Display in Firefox" is available in the setting below
|
|
||||||
// and by effect controls whether PDFs are handled in-browser or externally ("Ask" or "Open With").
|
|
||||||
//user_pref("pdfjs.disabled", false); // DEFAULT
|
|
||||||
|
|
||||||
// PREF: allow viewing of PDFs even if the response HTTP headers
|
|
||||||
// include Content-Disposition:attachment.
|
|
||||||
//user_pref("browser.helperApps.showOpenOptionForPdfJS", true); // DEFAULT
|
|
||||||
|
|
||||||
// PREF: open PDFs inline (FF103+)
|
|
||||||
user_pref("browser.download.open_pdf_attachments_inline", true);
|
|
||||||
|
|
||||||
// PREF: PDF sidebar on load [HIDDEN]
|
|
||||||
// 2=table of contents (if not available, will default to 1)
|
|
||||||
// 1=view pages
|
|
||||||
// -1=disabled (default)
|
|
||||||
//user_pref("pdfjs.sidebarViewOnLoad", 2);
|
|
||||||
|
|
||||||
// PREF: default zoom for PDFs [HIDDEN]
|
|
||||||
// [NOTE] "page-width" not needed if using sidebar on load
|
|
||||||
//user_pref("pdfjs.defaultZoomValue", page-width);
|
|
||||||
|
|
||||||
/****************************************************************************
|
|
||||||
* SECTION: TAB BEHAVIOR *
|
|
||||||
****************************************************************************/
|
|
||||||
|
|
||||||
// PREF: unload tabs on low memory
|
|
||||||
// Firefox will detect if your computer’s memory is running low (less than 400MB)
|
|
||||||
// and suspend tabs that you have not used in awhile
|
|
||||||
// [1] https://support.mozilla.org/en-US/questions/1262073
|
|
||||||
// [2] https://blog.nightly.mozilla.org/2021/05/14/these-weeks-in-firefox-issue-93/
|
|
||||||
//user_pref("browser.tabs.unloadOnLowMemory", true); // DEFAULT
|
|
||||||
|
|
||||||
// PREF: search query opens in a new tab (instead of the current tab)
|
|
||||||
//user_pref("browser.search.openintab", true); // SEARCH BOX
|
|
||||||
//user_pref("browser.urlbar.openintab", true); // URL BAR
|
|
||||||
|
|
||||||
// PREF: control behavior of links that would normally open in a new window
|
|
||||||
// [NOTE] You can still right-click a link and open in a new window
|
|
||||||
// 3 (default) = in a new tab; pop-up windows are treated like regular tabs
|
|
||||||
// 2 = in a new window
|
|
||||||
// 1 = in the current tab
|
|
||||||
//user_pref("browser.link.open_newwindow", 3); // DEFAULT
|
|
||||||
|
|
||||||
// PREF: determine the behavior of pages opened by JavaScript (like popups)
|
|
||||||
// 2 (default) = catch new windows opened by JavaScript that do not have
|
|
||||||
// specific values set (how large the window should be, whether it
|
|
||||||
// should have a status bar, etc.)
|
|
||||||
// 1 = let all windows opened by JavaScript open in new windows
|
|
||||||
// 0 = force all new windows opened by JavaScript into tabs
|
|
||||||
// [NOTE] Most advertising popups also open in new windows with values set
|
|
||||||
// [1] https://kb.mozillazine.org/About:config_entries
|
|
||||||
//user_pref("browser.link.open_newwindow.restriction", 0);
|
|
||||||
|
|
||||||
// PREF: override <browser.link.open_newwindow> for external links
|
|
||||||
// Set if a different destination for external links is needed
|
|
||||||
// 3=Open in a new tab in the current window
|
|
||||||
// 2=Open in a new window
|
|
||||||
// 1=Open in the current tab/window
|
|
||||||
// -1=no overrides (default)
|
|
||||||
//user_pref("browser.link.open_newwindow.override.external", -1); // DEFAULT
|
|
||||||
|
|
||||||
// PREF: focus behavior for new tabs from links
|
|
||||||
// Determine whether a link opens in the foreground or background on left-click
|
|
||||||
// [SETTINGS] Settings>General>Tabs>"When you open a link, image or media in a new tab, switch to it immediately"
|
|
||||||
// true(default) = opens new tabs by left-click in the background, leaving focus on the current tab
|
|
||||||
// false = opens new tabs by left-click in the foreground, putting focus on the new tab
|
|
||||||
// [NOTE] CTRL+SHIFT+CLICK will open new tabs in foreground (default); switching PREF to false will reverse this behavior
|
|
||||||
// [1] https://kb.mozillazine.org/About:config_entries
|
|
||||||
//user_pref("browser.tabs.loadInBackground", true); // DEFAULT
|
|
||||||
|
|
||||||
// PREF: determines whether pages normally meant to open in a new window (such as
|
|
||||||
// target="_blank" or from an external program), but that have instead been loaded in a new tab
|
|
||||||
// This pref takes effect when Firefox has diverted a new window to a new tab instead, then:
|
|
||||||
// true = loads the new tab in the background, leaving focus on the current tab
|
|
||||||
// false(default) = loads the new tab in the foreground, taking the focus from the current tab
|
|
||||||
// [NOTE] Setting this preference to true will still bring the browser to the front when opening links from outside the browser
|
|
||||||
// [1] https://kb.mozillazine.org/About:config_entries
|
|
||||||
//user_pref("browser.tabs.loadDivertedInBackground", false); // DEFAULT
|
|
||||||
|
|
||||||
// PREF: load bookmarks in the background when left-clicking in Bookmarks Menu
|
|
||||||
//user_pref("browser.tabs.loadBookmarksInBackground", true);
|
|
||||||
|
|
||||||
// PREF: force bookmarks to open in a new tab, not the current tab
|
|
||||||
user_pref("browser.tabs.loadBookmarksInTabs", true);
|
|
||||||
|
|
||||||
// PREF: leave Bookmarks Menu open when selecting a site
|
|
||||||
user_pref("browser.bookmarks.openInTabClosesMenu", false);
|
|
||||||
|
|
||||||
// PREF: Prevent scripts from moving and resizing open windows
|
|
||||||
//user_pref("dom.disable_window_move_resize", true);
|
|
||||||
|
|
||||||
// PREF: insert new tabs after groups like it
|
|
||||||
// true(default) = open new tabs to the right of the parent tab
|
|
||||||
// false = new tabs are opened at the far right of the tab bar
|
|
||||||
//user_pref("browser.tabs.insertRelatedAfterCurrent", true); // DEFAULT
|
|
||||||
|
|
||||||
// PREF: insert new tabs immediately after the current tab
|
|
||||||
//user_pref("browser.tabs.insertAfterCurrent", true);
|
|
||||||
|
|
||||||
// PREF: leave the browser window open even after you close the last tab
|
|
||||||
//user_pref("browser.tabs.closeWindowWithLastTab", false);
|
|
||||||
|
|
||||||
// PREF: stop websites from reloading pages automatically
|
|
||||||
// [WARNING] Breakage with some sites.
|
|
||||||
// [1] https://www.ghacks.net/2018/08/19/stop-websites-from-reloading-pages-automatically/
|
|
||||||
//user_pref("accessibility.blockautorefresh", true);
|
|
||||||
//user_pref("browser.meta_refresh_when_inactive.disabled", true);
|
|
||||||
|
|
||||||
// PREF: Controls if a double click word selection also deletes one adjacent whitespace
|
|
||||||
// (if feasible). This mimics native behavior on macOS.
|
|
||||||
//user_pref("editor.word_select.delete_space_after_doubleclick_selection", true);
|
|
||||||
|
|
||||||
// PREF: limit events that can cause a pop-up
|
|
||||||
// Firefox provides an option to provide exceptions for sites, remembered in your Site Settings.
|
|
||||||
// (default) "change click dblclick auxclick mouseup pointerup notificationclick reset submit touchend contextmenu"
|
|
||||||
// (alternate) user_pref("dom.popup_allowed_events", "click dblclick mousedown pointerdown");
|
|
||||||
//user_pref("dom.popup_allowed_events", "click dblclick");
|
|
||||||
//user_pref("dom.disable_open_during_load", true); // DEFAULT
|
|
||||||
//user_pref("privacy.popups.showBrowserMessage", true); // DEFAULT
|
|
||||||
|
|
||||||
// PREF: Cookie Banner handling [NIGHTLY]
|
|
||||||
// [NOTE] Feature still enforces Total Cookie Protection to limit 3rd-party cookie tracking [1]
|
|
||||||
// [1] https://github.com/mozilla/cookie-banner-rules-list/issues/33#issuecomment-1318460084
|
|
||||||
// [2] https://phabricator.services.mozilla.com/D153642
|
|
||||||
// [3] https://winaero.com/make-firefox-automatically-click-on-reject-all-in-cookie-banner-consent/
|
|
||||||
// [4] https://docs.google.com/spreadsheets/d/1Nb4gVlGadyxix4i4FBDnOeT_eJp2Zcv69o-KfHtK-aA/edit#gid=0
|
|
||||||
// 2: reject banners if it is a one-click option; otherwise, fall back to the accept button to remove banner
|
|
||||||
// 1: reject banners if it is a one-click option; otherwise, keep banners on screen
|
|
||||||
// 0: disable all cookie banner handling
|
|
||||||
user_pref("cookiebanners.service.mode", 2);
|
|
||||||
user_pref("cookiebanners.service.mode.privateBrowsing", 2);
|
|
||||||
//user_pref("cookiebanners.bannerClicking.enabled", true); // DEFAULT [FF108]
|
|
||||||
//user_pref("cookiebanners.cookieInjector.enabled", true); // DEFAULT
|
|
||||||
|
|
||||||
// PREF: enable global CookieBannerRules
|
|
||||||
// This is used for click rules that can handle common Consent Management Providers (CMP)
|
|
||||||
// [WARNING] Enabling this (when the cookie handling feature is enabled) may
|
|
||||||
// negatively impact site performance since it requires us to run rule-defined
|
|
||||||
// query selectors for every page
|
|
||||||
//user_pref("cookiebanners.service.enableGlobalRules", enable);
|
|
||||||
|
|
||||||
/****************************************************************************
|
|
||||||
* SECTION: UNCATEGORIZED *
|
|
||||||
****************************************************************************/
|
|
||||||
|
|
||||||
// PREF: restore "View image info"
|
|
||||||
//user_pref("browser.menu.showViewImageInfo", true);
|
|
||||||
|
|
||||||
// PREF: Disable Reader mode
|
|
||||||
// Firefox will not have to parse webpage for Reader when navigating.
|
|
||||||
// Minimal performance impact.
|
|
||||||
//user_pref("reader.parse-on-load.enabled", false);
|
|
||||||
|
|
||||||
// PREF: Disable backspace action
|
|
||||||
// 0=previous page, 1=scroll up, 2=do nothing
|
|
||||||
//user_pref("browser.backspace_action", 2); // DEFAULT
|
|
||||||
|
|
||||||
// PREF: Disable ALT key toggling the menu bar
|
|
||||||
//user_pref("ui.key.menuAccessKey", 0);
|
|
||||||
|
|
||||||
// PREF: CTRL+TAB cycles tabs in chronological order instead of recently-
|
|
||||||
// used order
|
|
||||||
//user_pref("browser.ctrlTab.recentlyUsedOrder", false);
|
|
||||||
|
|
||||||
// PREF: Spell-check
|
|
||||||
// 0=none, 1-multi-line, 2=multi-line & single-line
|
|
||||||
//user_pref("layout.spellcheckDefault", 1); // DEFAULT
|
|
||||||
|
|
||||||
// PREF: Spell Checker underline styles [HIDDEN]
|
|
||||||
// [1] https://kb.mozillazine.org/Ui.SpellCheckerUnderlineStyle#Possible_values_and_their_effects
|
|
||||||
//user_pref("ui.SpellCheckerUnderlineStyle", 1);
|
|
||||||
|
|
||||||
// PREF: Limit the number of bookmark backups Firefox keeps
|
|
||||||
//user_pref("browser.bookmarks.max_backups", 1);
|
|
||||||
|
|
||||||
// PREF: Allow for more granular control of zoom levels
|
|
||||||
// Especially useful if you want to set your default zoom to a custom level
|
|
||||||
//user_pref("toolkit.zoomManager.zoomValues", ".3,.5,.67,.8,.9,.95,1,1.1,1.2,1.3,1.4,1.5,1.6,1.7,2,2.4,3");
|
|
||||||
|
|
||||||
// PREF: Hide image placeholders
|
|
||||||
//user_pref("browser.display.show_image_placeholders", false);
|
|
||||||
|
|
||||||
// PREF: Wrap long lines of text when using source / debugger
|
|
||||||
//user_pref("view_source.wrap_long_lines", true);
|
|
||||||
//user_pref("devtools.debugger.ui.editor-wrapping", true);
|
|
||||||
|
|
||||||
// PREF: enable ASRouter Devtools at about:newtab#devtools (useful if you're making your own CSS theme)
|
|
||||||
// [1] https://firefox-source-docs.mozilla.org/browser/components/newtab/content-src/asrouter/docs/debugging-docs.html
|
|
||||||
//user_pref("browser.newtabpage.activity-stream.asrouter.devtoolsEnabled", true);
|
|
||||||
// show user agent styles in the inspector
|
|
||||||
//user_pref("devtools.inspector.showUserAgentStyles", true);
|
|
||||||
// show native anonymous content (like scrollbars or tooltips) and user agent shadow roots (like the components of an <input> element) in the inspector
|
|
||||||
//user_pref("devtools.inspector.showAllAnonymousContent", true);
|
|
||||||
|
|
||||||
// PREF: print preview
|
|
||||||
//user_pref("print.tab_modal.enabled", true); // DEFAULT
|
|
||||||
|
|
||||||
// PREF: adjust the minimum tab width
|
|
||||||
// Can be overridden by userChrome.css
|
|
||||||
//user_pref("browser.tabs.tabMinWidth", 120); // default=76
|
|
||||||
|
|
||||||
// PREF: remove underlined characters from various settings
|
|
||||||
//user_pref("ui.key.menuAccessKey", 0);
|
|
||||||
|
|
||||||
// PREF: zoom only text on webpage, not other elements
|
|
||||||
//user_pref("browser.zoom.full", false);
|
|
||||||
|
|
||||||
// PREF: enable :has() CSS relational pseudo-class
|
|
||||||
// Needed for some extensions, filters, and customizations
|
|
||||||
// [1] https://developer.mozilla.org/en-US/docs/Web/CSS/:has
|
|
||||||
// [2] https://caniuse.com/css-has
|
|
||||||
user_pref("layout.css.has-selector.enabled", true);
|
|
||||||
|
|
||||||
// PREF: disable when dragging a scrollbar, if the mouse moves
|
|
||||||
// too far from the scrollbar, the scrollbar will snap back to the top [LINUX?]
|
|
||||||
// default=6
|
|
||||||
//user_pref("slider.snapMultiplier", 0);
|
|
||||||
|
|
||||||
// PREF: disable websites overriding Firefox's keyboard shortcuts [FF58+]
|
|
||||||
// 0 (default) or 1=allow, 2=block
|
|
||||||
// [SETTING] to add site exceptions: Ctrl+I>Permissions>Override Keyboard Shortcuts ***/
|
|
||||||
//user_pref("permissions.default.shortcuts", 2);
|
|
||||||
|
|
||||||
// PREF: JPEG XL image format [NIGHTLY]
|
|
||||||
// [1] https://cloudinary.com/blog/the-case-for-jpeg-xl
|
|
||||||
//user_pref("image.jxl.enabled", true);
|
|
||||||
|
|
||||||
// PREF: enable CSS moz document rules
|
|
||||||
// Still needed for Stylus?
|
|
||||||
// [1] https://old.reddit.com/r/FirefoxCSS/comments/8x2q97/reenabling_mozdocument_rules_in_firefox_61/
|
|
||||||
//user_pref("layout.css.moz-document.content.enabled", true);
|
|
||||||
|
|
||||||
// PREF: restore zooming behavior [macOS] [FF109+]
|
|
||||||
// On macOS, Ctrl or Cmd + trackpad or mouse wheel now scrolls the page instead of zooming.
|
|
||||||
// This avoids accidental zooming and matches Safari's and Chrome's behavior.
|
|
||||||
// The prefs below restores the previous zooming behavior
|
|
||||||
//user_pref("mousewheel.with_control.action", 3);
|
|
||||||
//user_pref("mousewheel.with_meta.action", 3);
|
|
||||||
|
|
||||||
// PREF: disable efficiency mode [WINDOWS]
|
|
||||||
// [1] https://bugzilla.mozilla.org/show_bug.cgi?id=1796525
|
|
||||||
// [2] https://bugzilla.mozilla.org/show_bug.cgi?id=1800412
|
|
||||||
// [3] https://old.reddit.com/r/firefox/comments/107fj69/how_can_i_disable_the_efficiency_mode_on_firefox/
|
|
||||||
//user_pref("dom.ipc.processPriorityManager.backgroundUsesEcoQoS", false);
|
|
||||||
|
|
||||||
|
|
||||||
@@ -2,100 +2,32 @@
|
|||||||

|

|
||||||
[](https://hits.seeyoufarm.com)
|
[](https://hits.seeyoufarm.com)
|
||||||
|
|
||||||
# Betterfox
|
# Betterfox 115 ESR
|
||||||
about:config tweaks to enhance [Mozilla Firefox](https://www.mozilla.org/en-US/firefox/new/ "Firefox Homepage"). Files are updated as needed for your [user.js](http://kb.mozillazine.org/User.js_file).
|
[about:config](https://support.mozilla.org/en-US/kb/about-config-editor-firefox) tweaks to enhance [Mozilla Firefox](https://www.mozilla.org/en-US/firefox/new/).
|
||||||
|
|
||||||
|
These prefs are applicable for:
|
||||||
|
* [Firefox ESR 115.0](https://support.mozilla.org/en-US/kb/switch-to-firefox-extended-support-release-esr) <sup>[^more info](https://support.mozilla.org/en-US/kb/firefox-esr-release-cycle)</sup>
|
||||||
|
* [Waterfox G6](https://github.com/WaterfoxCo/Waterfox)
|
||||||
|
* [Floorp ESR 115](https://github.com/Floorp-Projects/Floorp/tree/ESR115)
|
||||||
|
|
||||||
## Made for everyday browsing
|
Using regular Firefox? [Switch back to the main branch](https://github.com/yokoffing/Betterfox).
|
||||||
**A secure, blazing fast browsing experience. Without breakage.** The objective is to make the defaults sufficient enough for the average privacy-minded user, but remain trouble-free enough that my grandmother could use it. <strike>(That puts a whole new twist on being a foxy grandma!)</strike> Edit: Sorry for the dad joke 😓
|
|
||||||
|
|
||||||
|
## Getting started
|
||||||
|
*If you don't have it already: [Get Firefox](https://www.mozilla.org/en-US/firefox/all/#product-desktop-esr)*
|
||||||
|
|
||||||
## Simple goals
|
1) Create a [backup profile](https://github.com/yokoffing/Betterfox/wiki/Backup).
|
||||||
1) **Minimalism:** get what isn't needed out of the way
|
2) Download the user.js file [here](https://raw.githubusercontent.com/yokoffing/Betterfox/esr115/user.js) (Right click > `Save Link As…`).
|
||||||
2) **Efficiency:** unleash Firefox's ability to be fast and performant
|
3) Review [Common Overrides](https://github.com/yokoffing/Betterfox/wiki/Common-Overrides) and make any necessary changes.
|
||||||
3) **Security:** sensible privacy and security without causing site breakage
|
4) Open Firefox. In the URL bar, type `about:profiles` and press `Enter`.
|
||||||
|
5) For the profile you want to use (or use default), click `Open Folder` in the **Root Directory** section.
|
||||||
|
6) Move the `user.js` file into the folder.
|
||||||
|
|
||||||
|
*After restarting Firefox:*
|
||||||
## Simple configs
|
1) Get an **ad blocker** like [uBlock Origin](https://addons.mozilla.org/blog/ublock-origin-everything-you-need-to-know-about-the-ad-blocker/) with our [recommended filters](https://github.com/yokoffing/filterlists#guidelines). For a simple solution, use [Ghostery](https://addons.mozilla.org/en-US/firefox/addon/ghostery/).
|
||||||
|
3) Enable **DNS-level protection** with [NextDNS](https://nextdns.io/?from=xujj63g5), and check out our configuration [guide](https://github.com/yokoffing/NextDNS-Config).
|
||||||
| List | Description |
|
* See how to [quickly enable](https://support.mozilla.org/en-US/kb/dns-over-https) **secure DNS** in Firefox.
|
||||||
|:---------:|-------------|
|
|
||||||
| [Fastfox](https://github.com/yokoffing/Betterfox/blob/master/Fastfox.js) | Immensely increase Firefox's browsing speed. Give Chrome a run for its money!|
|
|
||||||
| [Securefox](https://github.com/yokoffing/Betterfox/blob/master/Securefox.js) | Telemetry blocked. [HTTPS-by-Default](https://blog.mozilla.org/security/2021/08/10/firefox-91-introduces-https-by-default-in-private-browsing/). [Total Cookie Protection](https://blog.mozilla.org/security/2021/02/23/total-cookie-protection/) with [site isolation](https://blog.mozilla.org/security/2021/05/18/introducing-site-isolation-in-firefox/). Enhanced [state](https://developer.mozilla.org/en-US/docs/Web/Privacy/State_Partitioning) and [network](https://blog.mozilla.org/security/2021/01/26/supercookie-protections/) partitioning. Various other enhancements. |
|
|
||||||
| [Peskyfox](https://github.com/yokoffing/Betterfox/blob/master/Peskyfox.js) | Unclutter the new tab page. Remove [Pocket](https://support.mozilla.org/en-US/kb/what-pocket). Restore [compact mode](https://support.mozilla.org/en-US/kb/compact-mode-workaround-firefox) as an option. Stop webpage notifications, pop-ups, and other annoyances. |
|
|
||||||
| [Smoothfox](https://github.com/yokoffing/Betterfox/blob/master/Smoothfox.js) | Get Edge-like smooth scrolling on your favorite browser — or choose something more your style. |
|
|
||||||
| [user.js](https://github.com/yokoffing/Betterfox/blob/master/user.js) | All the essentials. None of the breakage. This is your `user.js`. |
|
|
||||||
|
|
||||||
:bulb: `Fastfox`, `Securefox`, `Peskyfox`, and `Smoothfox` are guides to relevant prefs in Firefox. The `user.js` is curated from the options located in these documents. Please read the guides to understand the various options hidden in Firefox.
|
|
||||||
|
|
||||||
## about:Privacy
|
## about:Privacy
|
||||||
Most repos have niche privacy and security concerns with little regard for speed, annoyances, or mainstream use. Betterfox was inspired by the [law of diminishing returns](https://pmctraining.com/site/wp-content/uploads/2018/04/Law-of-Diminishing-Returns-CHART.png) and the [minimum effective dose](https://medium.com/the-mission/less-is-more-the-minimum-effective-dose-e6d56625931e). For instance, features like WebGL and DRM are still enabled, and you won't find a setting like `privacy.resistFingerprinting` mentioned here<sup>^[*why?*](https://old.reddit.com/r/firefox/comments/wuqpgi/are_there_any_aboutconfig_tweaks_to_get_smooth/ile3whx/?context=3)</sup>. And while Betterfox is designed to set-and-forget, it contains plenty of options for those who like to tinker.
|
Betterfox is a great balance of privacy and convenience.
|
||||||
|
|
||||||
If your context calls for _anonymity_ and not just reasonable _privacy_, then please use [Tor Browser](https://www.torproject.org).<sup>[1](https://youtu.be/5NrbdO4yWek?t=4334)</sup> [Fingerprinting](https://smartframe.io/blog/browser-fingerprinting-everything-you-need-to-know/) is a high [threat model](https://thenewoil.org/en/guides/prologue/threatmodel/) issue that is [only addressed reasonably by Tor](https://github.com/arkenfox/user.js/wiki/3.3-Overrides-%5BTo-RFP-or-Not%5D).
|
See [Optional Hardening](https://github.com/yokoffing/Betterfox/wiki/Optional-Hardening) for other suggestions.
|
||||||
|
|
||||||
## Assumptions
|
|
||||||
Apply preferences from the [common overrides](https://github.com/yokoffing/Betterfox/issues/87) sticky if you want to revert the following behavior:
|
|
||||||
* Firefox **Accessibility Service** is disabled to improve resource utilization and security. Override this if you use assistive software.
|
|
||||||
* **Embedded tweets, instagram, reddit posts, and tiktoks** load on webpages, even though these requests are usually blocked when using [Strict Enhanced Tracking Protection](https://support.mozilla.org/en-US/kb/enhanced-tracking-protection-firefox-desktop#w_strict-enhanced-tracking-protection).
|
|
||||||
* The native **password manager** is disabled. We recommend using [KeePass](https://addons.mozilla.org/en-US/firefox/addon/keepassxc-browser/), [Bitwarden](https://addons.mozilla.org/en-US/firefox/addon/bitwarden-password-manager/), or [1Password](https://addons.mozilla.org/en-US/firefox/addon/1password-x-password-manager).
|
|
||||||
* **Firefox Sync** and **Firefox View** are disabled.
|
|
||||||
* **Location requests** are rejected and **site notifications** are disabled.
|
|
||||||
|
|
||||||
### Suggestions
|
|
||||||
* Enable **sanitize on close** ([clear browsing data on shutdown](https://github.com/yokoffing/Betterfox/blob/99f2e860633f307781ddb73d792358ad1bec6af5/Securefox.js#L409-L434)).
|
|
||||||
* You can **allow exceptions** if you want to stay logged in to some sites:
|
|
||||||
1) Go to *Settings → Privacy & Security → Cookies and Site Data → Manage Exceptions*
|
|
||||||
2) Check *Delete cookies and site data when Firefox is closed*.
|
|
||||||
* Use [uBlock Origin](https://addons.mozilla.org/blog/ublock-origin-everything-you-need-to-know-about-the-ad-blocker/) or [Ghostery](https://addons.mozilla.org/en-US/firefox/addon/ghostery/) to block ads and trackers.
|
|
||||||
* Add DNS-level protection like [NextDNS](https://nextdns.io/?from=xujj63g5). Check out our configuration guide [here](https://github.com/yokoffing/NextDNS-Config).
|
|
||||||
|
|
||||||
## Recognition
|
|
||||||
### User Comments
|
|
||||||
- [1](https://old.reddit.com/r/firefox/comments/xsw0zt/comment/iqo0dbv/?context=3)
|
|
||||||
[2](https://old.reddit.com/r/browsers/comments/y7w57n/which_browser_do_you_use_on_your_devices/it30hqi/?context=3)
|
|
||||||
[3](https://old.reddit.com/r/firefox/comments/z5auzi/firefox_not_properly_usingrecognizing_gpu_poor/iy0kru3)
|
|
||||||
[4](https://old.reddit.com/r/firefox/comments/z5auzi/firefox_not_properly_usingrecognizing_gpu_poor/iy36hyz)
|
|
||||||
[5](https://old.reddit.com/r/firefox/comments/1030fri/why_does_firefox_feel_slowchoppy/j2wu4ow/)
|
|
||||||
[6](https://old.reddit.com/r/pcmasterrace/comments/zwioe1/what_browser_will_you_be_using_in_2023_please/j1wmbxo/)
|
|
||||||
[7](https://old.reddit.com/r/firefox/comments/zodxzx/performance_optimizations_for_firefox/j0memta/?context=2)
|
|
||||||
[8](https://old.reddit.com/r/browsers/comments/106qwyk/in_contrast_to_previous_post_what_do_you_like/j3irpx0/?context=2)
|
|
||||||
[9](https://old.reddit.com/r/firefox/comments/115va7d/list_of_aboutconfiguserjs_privacy_tweaks/j9700bc/?context=2)
|
|
||||||
[10](https://old.reddit.com/r/browsers/comments/11q6je7/is_block_or_snoof_browser_fingerprint_better/jc2mhcx/?context=2)
|
|
||||||
|
|
||||||
### Browser Integration
|
|
||||||
* [Pulse Browser](https://github.com/pulse-browser/browser#%EF%B8%8F-credits) | [files](https://github.com/pulse-browser/browser/tree/alpha/src/browser/app/profile) (Dec 2021)
|
|
||||||
* [Ghostery Private Browser](https://github.com/ghostery/user-agent-desktop#community) | [files](https://github.com/ghostery/user-agent-desktop/tree/main/brands/ghostery/branding/pref) (Feb 2021)
|
|
||||||
* [Betterfox adopted into Ghostery Private Browser](https://web.archive.org/web/20210509171835/https://www.ghostery.com/ghostery-dawn-update-more/)<sup>[1](https://web.archive.org/web/20210921114333/https://www.ghostery.com/ghostery-dawn-product-update/)</sup>
|
|
||||||
|
|
||||||
### YouTube
|
|
||||||
* [Firefox is NOT private. Here's how to fix it.](https://youtu.be/Fr8UFJzpNls) (Mar 2023)
|
|
||||||
* [The ULTIMATE Browser Tier List (Based Tier to Spyware Tier)](https://youtu.be/j5r6jFE8gic) (Mar 2023)
|
|
||||||
* [I Hate Firefox. But I'm Still Switching Back to It.](https://youtu.be/w0SJFED5xK0?t=220) (Nov 2022)
|
|
||||||
* [Español] [Optimizar y Acelerar Firefox](https://www.youtube.com/watch?v=3XtoONmq5_Q) (Nov 2022)
|
|
||||||
* [How To Improve Firefox Performance](https://www.youtube.com/watch?v=N8IOJiOFVEk) (Dec 2021)
|
|
||||||
|
|
||||||
### Podcasts
|
|
||||||
* [GhoSTORIES with Franz & Pete](https://anchor.fm/ghostories/episodes/S2E6-We-Talking-Ghostery-Dawn----Again-er0q02/a-a4o5vmh), S2|E6, 17:05-18:40 (Feb 2021)
|
|
||||||
|
|
||||||
### Articles
|
|
||||||
* [Russian] [The Pulse Browser project develops an experimental fork of Firefox](https://www.opennet.ru/opennews/art.shtml?num=59076) (May 2023)
|
|
||||||
* [2023 Browser Showdown: Comparing Chrome, Brave, Firefox, Vivaldi, and Opera – Is it Worth the Switch?](https://www.appdate.lk/technology/2023-browser-showdown/) (Jan 2023)
|
|
||||||
|
|
||||||
### Guides
|
|
||||||
* [FMHY Browser Tools: Privacy Hardened Firefox](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/storage/#wiki_privacy_hardened_firefox)
|
|
||||||
* [Firefox-UI-Fix](https://github.com/black7375/Firefox-UI-Fix/wiki/Tips#privacy)
|
|
||||||
* [Narsil/desktop_user.js](https://git.nixnet.services/Narsil/desktop_user.js#thanks)
|
|
||||||
* [pyllyukko/user.js](https://github.com/pyllyukko/user.js) [comparator](https://jm42.github.io/compare-user.js/)
|
|
||||||
|
|
||||||
### Contributions
|
|
||||||
* [Ghostery Private Browser](https://github.com/ghostery/user-agent-desktop/issues?q=is%3Apr+is%3Aissue+author%3Ayokoffing+)
|
|
||||||
* [Orion Browser](https://orionfeedback.org/?author=yokoffing)
|
|
||||||
* [Kagi Search Engine](https://kagifeedback.org/?author=yokoffing)
|
|
||||||
* [Various blocklists](https://github.com/yokoffing/filterlists#contributions)
|
|
||||||
|
|
||||||
## Credit
|
|
||||||
* Many thanks to the [Firefox](https://www.mozilla.org/en-US/firefox/new/) team and to the people working on [Bugzilla](https://bugzilla.mozilla.org/home), fighting for the [open web](https://builtin.com/software-engineering-perspectives/open-web).
|
|
||||||
* This repository benefits from the ongoing research provided by [arkenfox](https://github.com/arkenfox/user.js). They are the foundation to any worthwhile `user.js`.
|
|
||||||
|
|
||||||
<div align='center'><a href='https://www.websitecounterfree.com'><img src='https://www.websitecounterfree.com/c.php?d=9&id=19653&s=1' border='0' alt='Free Website Counter'></a><br / >
|
|
||||||
<div align='center'>since 23 July 2022</div>
|
|
||||||
|
|||||||
-1329
File diff suppressed because it is too large
Load Diff
@@ -1,41 +0,0 @@
|
|||||||
/****************************************************************************************
|
|
||||||
* Smoothfox *
|
|
||||||
* "Faber est suae quisque fortunae" *
|
|
||||||
* priority: better scrolling *
|
|
||||||
* version: January 2023 *
|
|
||||||
* url: https://github.com/yokoffing/Betterfox *
|
|
||||||
***************************************************************************************/
|
|
||||||
|
|
||||||
/****************************************************************************************
|
|
||||||
* OPTION 1: INSTANT SCROLLING (SIMPLE ADJUSTMENT) *
|
|
||||||
****************************************************************************************/
|
|
||||||
// recommended for 60hz+ displays
|
|
||||||
user_pref("general.smoothScroll", true); // DEFAULT
|
|
||||||
user_pref("mousewheel.default.delta_multiplier_y", 275); // 250-400
|
|
||||||
|
|
||||||
/****************************************************************************************
|
|
||||||
* OPTION 2: SMOOTH SCROLLING *
|
|
||||||
****************************************************************************************/
|
|
||||||
// recommended for 90hz+ displays
|
|
||||||
user_pref("general.smoothScroll", true); // DEFAULT
|
|
||||||
user_pref("mousewheel.default.delta_multiplier_y", 300); // 250-400
|
|
||||||
user_pref("general.smoothScroll.msdPhysics.enabled", true);
|
|
||||||
|
|
||||||
/****************************************************************************************
|
|
||||||
* OPTION 3: NATURAL SMOOTH SCROLLING V3 [MODIFIED] *
|
|
||||||
****************************************************************************************/
|
|
||||||
// recommended for 120hz+ displays
|
|
||||||
// largely matches Chrome flags: Windows Scrolling Personality and Smooth Scrolling
|
|
||||||
// from https://github.com/AveYo/fox/blob/cf56d1194f4e5958169f9cf335cd175daa48d349/Natural%20Smooth%20Scrolling%20for%20user.js
|
|
||||||
user_pref("general.smoothScroll", true); // DEFAULT
|
|
||||||
user_pref("general.smoothScroll.msdPhysics.continuousMotionMaxDeltaMS", 12);
|
|
||||||
user_pref("general.smoothScroll.msdPhysics.enabled", true);
|
|
||||||
user_pref("general.smoothScroll.msdPhysics.motionBeginSpringConstant", 600);
|
|
||||||
user_pref("general.smoothScroll.msdPhysics.regularSpringConstant", 650);
|
|
||||||
user_pref("general.smoothScroll.msdPhysics.slowdownMinDeltaMS", 25);
|
|
||||||
user_pref("general.smoothScroll.msdPhysics.slowdownMinDeltaRatio", 2.0);
|
|
||||||
user_pref("general.smoothScroll.msdPhysics.slowdownSpringConstant", 250);
|
|
||||||
user_pref("general.smoothScroll.currentVelocityWeighting", 1.0);
|
|
||||||
user_pref("general.smoothScroll.stopDecelerationWeighting", 1.0);
|
|
||||||
user_pref("mousewheel.default.delta_multiplier_y", 300); // 250-400
|
|
||||||
|
|
||||||
@@ -1,111 +0,0 @@
|
|||||||
//
|
|
||||||
/* You may copy+paste this file and use it as it is.
|
|
||||||
*
|
|
||||||
* If you make changes to your about:config while the program is running, the
|
|
||||||
* changes will be overwritten by this file when the application restarts.
|
|
||||||
*
|
|
||||||
* To make lasting changes to preferences, you will have to edit this file.
|
|
||||||
*/
|
|
||||||
|
|
||||||
/****************************************************************************
|
|
||||||
* Betterfox - LibreWolf overrides (beta) *
|
|
||||||
* Quis custodiet ipsos custodes *
|
|
||||||
* version: November 2022 *
|
|
||||||
* url: https://github.com/yokoffing/Betterfox *
|
|
||||||
* license: https://github.com/yokoffing/Betterfox/blob/master/LICENSE *
|
|
||||||
* README: https://github.com/yokoffing/Betterfox/blob/master/README.md *
|
|
||||||
****************************************************************************/
|
|
||||||
|
|
||||||
// Where do I find my librewolf.overrides.cfg? https://librewolf.net/docs/settings/#where-do-i-find-my-librewolfoverridescfg
|
|
||||||
// LibreWolf default prefs: https://gitlab.com/librewolf-community/settings/-/blob/master/librewolf.cfg
|
|
||||||
|
|
||||||
/****************************************************************************
|
|
||||||
* SECTION: FASTFOX *
|
|
||||||
****************************************************************************/
|
|
||||||
defaultPref("layout.css.grid-template-masonry-value.enabled", true);
|
|
||||||
defaultPref("dom.enable_web_task_scheduling", true);
|
|
||||||
defaultPref("layout.css.animation-composition.enabled", true);
|
|
||||||
|
|
||||||
/****************************************************************************
|
|
||||||
* SECTION: SECUREFOX *
|
|
||||||
****************************************************************************/
|
|
||||||
/** TRACKING PROTECTION ***/
|
|
||||||
defaultPref("privacy.trackingprotection.emailtracking.enabled", true);
|
|
||||||
defaultPref("urlclassifier.trackingSkipURLs", "*.reddit.com, *.twitter.com, *.twimg.com");
|
|
||||||
defaultPref("urlclassifier.features.socialtracking.skipURLs", "*.instagram.com, *.twitter.com, *.twimg.com");
|
|
||||||
|
|
||||||
/** OCSP & CERTS / HPKP ***/
|
|
||||||
// Use CRLite instead of OCSP
|
|
||||||
defaultPref("security.OCSP.enabled", 0);
|
|
||||||
defaultPref("security.OCSP.require", false);
|
|
||||||
defaultPref("security.pki.crlite_mode", 2);
|
|
||||||
|
|
||||||
/** RFP ***/
|
|
||||||
// Limits refresh rate to 60mHz, breaks timezone, and forced light theme
|
|
||||||
// [1] https://librewolf.net/docs/faq/#what-are-the-most-common-downsides-of-rfp-resist-fingerprinting
|
|
||||||
defaultPref("privacy.resistFingerprinting", false);
|
|
||||||
|
|
||||||
// WebGL
|
|
||||||
// Breaks Map sites, NYT articles, Nat Geo, and more
|
|
||||||
// [1] https://manu.ninja/25-real-world-applications-using-webgl/
|
|
||||||
defaultPref("webgl.disabled", false);
|
|
||||||
|
|
||||||
// DRM
|
|
||||||
// Netflix, Udemy, Spotify, etc.
|
|
||||||
defaultPref("media.eme.enabled", true);
|
|
||||||
|
|
||||||
/** HTTPS-ONLY MODE ***/
|
|
||||||
defaultPref("dom.security.https_only_mode_error_page_user_suggestions", true);
|
|
||||||
|
|
||||||
/** PASSWORDS AND AUTOFILL ***/
|
|
||||||
defaultPref("signon.generation.enabled", false);
|
|
||||||
|
|
||||||
/** WEBRTC ***/
|
|
||||||
// Breaks video conferencing
|
|
||||||
defaultPref("media.peerconnection.ice.no_host", false);
|
|
||||||
|
|
||||||
/** PERMISSIONS ***/
|
|
||||||
defaultPref("permissions.default.geo", 2);
|
|
||||||
defaultPref("permissions.default.desktop-notification", 2);
|
|
||||||
defaultPref("dom.push.enabled", false);
|
|
||||||
|
|
||||||
/****************************************************************************
|
|
||||||
* SECTION: PESKYFOX *
|
|
||||||
****************************************************************************/
|
|
||||||
/** MOZILLA UI ***/
|
|
||||||
defaultPref("layout.css.prefers-color-scheme.content-override", 2);
|
|
||||||
defaultPref("toolkit.legacyUserProfileCustomizations.stylesheets", true);
|
|
||||||
defaultPref("browser.compactmode.show", true);
|
|
||||||
defaultPref("findbar.highlightAll", true);
|
|
||||||
|
|
||||||
/** FULLSCREEN ***/
|
|
||||||
defaultPref("full-screen-api.transition-duration.enter", "0 0");
|
|
||||||
defaultPref("full-screen-api.transition-duration.leave", "0 0");
|
|
||||||
defaultPref("full-screen-api.warning.delay", 0);
|
|
||||||
defaultPref("full-screen-api.warning.timeout", 0);
|
|
||||||
|
|
||||||
/** URL BAR ***/
|
|
||||||
defaultPref("browser.urlbar.suggest.engines", false);
|
|
||||||
defaultPref("browser.urlbar.suggest.topsites", false);
|
|
||||||
defaultPref("browser.urlbar.suggest.calculator", true);
|
|
||||||
defaultPref("browser.urlbar.unitConversion.enabled", true);
|
|
||||||
|
|
||||||
/** AUTOPLAY ***/
|
|
||||||
// Default breaks some video players
|
|
||||||
defaultPref("media.autoplay.blocking_policy", 0);
|
|
||||||
|
|
||||||
/** DOWNLOADS ***/
|
|
||||||
defaultPref("browser.download.autohideButton", true);
|
|
||||||
|
|
||||||
/** PDF ***/
|
|
||||||
defaultPref("browser.download.open_pdf_attachments_inline", true);
|
|
||||||
|
|
||||||
/** TAB BEHAVIOR ***/
|
|
||||||
defaultPref("browser.tabs.loadBookmarksInTabs", true);
|
|
||||||
defaultPref("browser.bookmarks.openInTabClosesMenu", false);
|
|
||||||
defaultPref("editor.truncate_user_pastes", false);
|
|
||||||
defaultPref("clipboard.plainTextOnly", true);
|
|
||||||
|
|
||||||
/****************************************************************************
|
|
||||||
* END: BETTERFOX *
|
|
||||||
****************************************************************************/
|
|
||||||
File diff suppressed because one or more lines are too long
@@ -1,141 +0,0 @@
|
|||||||
|
|
||||||
/****************************************************************************
|
|
||||||
* *
|
|
||||||
* DISCLAIMER *
|
|
||||||
* *
|
|
||||||
* This file is NOT INTENDED FOR OFFICIAL USE *
|
|
||||||
* It is a mix of PERSONAL and TESTING prefs and *
|
|
||||||
* may cause breakage or contain changes you do not want! *
|
|
||||||
* DO NOT USE unless you know what you are doing! *
|
|
||||||
* *
|
|
||||||
****************************************************************************/
|
|
||||||
|
|
||||||
/****************************************************************************
|
|
||||||
* START: MY OVERRIDES *
|
|
||||||
****************************************************************************/
|
|
||||||
/** Enter your personal prefs below this line ***/
|
|
||||||
|
|
||||||
/** SETUP ON FIRST INSTALLATION ***/
|
|
||||||
// Select one:
|
|
||||||
user_pref("network.trr.uri", "https://dns.nextdns.io/******/Firefox"); // DoH - NextDNS
|
|
||||||
user_pref("https://dns.controld.com/******"); // DoH - ControlD
|
|
||||||
|
|
||||||
/** FASTFOX ***/
|
|
||||||
user_pref("browser.sessionstore.restore_pinned_tabs_on_demand", true);
|
|
||||||
user_pref("browser.sessionstore.interval", 50000); // 5 min.; set minimum interval between session save operations
|
|
||||||
user_pref("gfx.webrender.compositor.force-enabled", true); // enforce
|
|
||||||
user_pref("layers.gpu-process.force-enabled", true); // enforce
|
|
||||||
user_pref("media.hardware-video-decoding.force-enabled", true); // enforce
|
|
||||||
user_pref("media.av1.enabled", false); // disable AV1 to force video hardware decoding
|
|
||||||
user_pref("network.http.pacing.requests.min-parallelism", 18); // default=6
|
|
||||||
user_pref("network.dnsCacheEntries", 20000); // maximum # of DNS entries
|
|
||||||
user_pref("network.dnsCacheExpiration", 86400); // keep DNS entries for 24 hours
|
|
||||||
user_pref("network.dnsCacheExpirationGracePeriod", 240); // 4 minutes
|
|
||||||
user_pref("network.http.speculative-parallel-limit", 18); // default=6
|
|
||||||
user_pref("network.dns.disablePrefetch", false);
|
|
||||||
user_pref("network.dns.disablePrefetchFromHTTPS", false);
|
|
||||||
user_pref("network.early-hints.enabled", true);
|
|
||||||
user_pref("network.early-hints.preconnect.enabled", true);
|
|
||||||
user_pref("network.early-hints.preconnect.max_connections", 20); // default Nightly=10
|
|
||||||
user_pref("network.prefetch-next", true);
|
|
||||||
user_pref("network.predictor.enabled", true);
|
|
||||||
user_pref("network.predictor.enable-prefetch", true);
|
|
||||||
user_pref("network.predictor.enable-hover-on-ssl", true);
|
|
||||||
user_pref("network.predictor.preresolve-min-confidence", 10);
|
|
||||||
user_pref("network.predictor.preconnect-min-confidence", 20);
|
|
||||||
user_pref("network.predictor.prefetch-min-confidence", 30);
|
|
||||||
user_pref("network.predictor.prefetch-force-valid-for", 3600);
|
|
||||||
user_pref("network.predictor.prefetch-rolling-load-count", 120);
|
|
||||||
user_pref("network.predictor.max-resources-per-entry", 250);
|
|
||||||
user_pref("network.predictor.max-uri-length", 1000);
|
|
||||||
|
|
||||||
/** SECUREFOX ***/
|
|
||||||
user_pref("browser.urlbar.showSearchSuggestionsFirst", false); // unselect "Show search suggestions ahead of browsing history in address bar results" for clean UI
|
|
||||||
user_pref("browser.urlbar.groupLabels.enabled", false); // hide Firefox Suggest label in URL dropdown box
|
|
||||||
//user_pref("signon.rememberSignons", false); // Privacy & Security>Logins and Passwords>Ask to save logins and passwords for websites
|
|
||||||
user_pref("signon.management.page.breach-alerts.enabled", false); // extra hardening
|
|
||||||
user_pref("signon.generation.enabled", false); // unselect "Suggest and generate strong passwords" for clean UI
|
|
||||||
user_pref("signon.firefoxRelay.feature", "unavailable"); // unselect suggestions from Firefox Relay for clean UI
|
|
||||||
user_pref("privacy.sanitize.sanitizeOnShutdown", true); // clear browsing data on shutdown
|
|
||||||
user_pref("privacy.clearOnShutdown.offlineApps", true); // clear Site Data on shutdown
|
|
||||||
user_pref("browser.safebrowsing.downloads.enabled", false); // deny SB to scan downloads to identify suspicious files; local checks only
|
|
||||||
user_pref("browser.safebrowsing.downloads.remote.url", ""); // enforce no remote checks for downloads by SB
|
|
||||||
user_pref("browser.safebrowsing.downloads.remote.block_potentially_unwanted", false); // clean up UI; not needed in user.js if remote downloads are disabled
|
|
||||||
user_pref("browser.safebrowsing.downloads.remote.block_uncommon", false); // clean up UI; not needed in user.js if remote downloads are disabled
|
|
||||||
user_pref("browser.safebrowsing.allowOverride", false); // do not allow user to override SB
|
|
||||||
user_pref("dom.push.enabled", false); // disable Push API; breaks FF Sync
|
|
||||||
user_pref("browser.search.update", false); // do not update opensearch engines
|
|
||||||
user_pref("network.notify.checkForProxies", false); // skip proxy request check
|
|
||||||
user_pref("network.trr.confirmationNS", "skip"); // skip TRR confirmation request
|
|
||||||
|
|
||||||
/** PESKYFOX ***/
|
|
||||||
user_pref("devtools.accessibility.enabled", false); // removes annoying "Inspect Accessibility Properties" on right-click
|
|
||||||
user_pref("browser.newtabpage.activity-stream.showSponsoredTopSites", false); // Settings>Home>Firefox Home Content>Recent Activity>Shortcuts>Sponsored shortcuts
|
|
||||||
user_pref("browser.newtabpage.activity-stream.showSponsored", false); // Settings>Home>Firefox Home Content>Recent Activity>Recommended by Pocket>Sponsored Stories
|
|
||||||
user_pref("browser.newtabpage.activity-stream.section.highlights.includeBookmarks", false); // Settings>Home>Firefox Home Content>Recent Activity>Bookmarks
|
|
||||||
user_pref("browser.newtabpage.activity-stream.section.highlights.includeDownloads", false); // Settings>Home>Firefox Home Content>Recent Activity>Most Recent Download
|
|
||||||
user_pref("browser.newtabpage.activity-stream.section.highlights.includeVisited", false); // Settings>Home>Firefox Home Content>Recent Activity>Visited Pages
|
|
||||||
user_pref("browser.newtabpage.activity-stream.section.highlights.includePocket", false); // Settings>Home>Firefox Home Content>Recent Activity>Pages Saved to Pocket
|
|
||||||
user_pref("browser.download.folderList", 0); // 0=desktop, 1=downloads, 2=last used
|
|
||||||
user_pref("browser.toolbars.bookmarks.visibility", "never"); // always hide bookmark bar
|
|
||||||
user_pref("browser.startup.homepage_override.mstone", "ignore"); // What's New page after updates; master switch
|
|
||||||
user_pref("browser.urlbar.suggest.bookmark", false); // hide URL bar dropdown suggestions
|
|
||||||
user_pref("browser.urlbar.suggest.history", false); // hide URL bar dropdown suggestions
|
|
||||||
user_pref("browser.urlbar.suggest.openpage", false); // hide URL bar dropdown suggestions
|
|
||||||
//user_pref("browser.urlbar.suggest.searches", false); // hide URL bar dropdown suggestions (needed?)
|
|
||||||
//user_pref("browser.urlbar.maxRichResults", 1); // minimum suggestion needed for URL bar autofill
|
|
||||||
user_pref("browser.bookmarks.max_backups", 0); // minimize disk use; manually back-up
|
|
||||||
user_pref("view_source.wrap_long_lines", true); // wrap source lines
|
|
||||||
user_pref("devtools.debugger.ui.editor-wrapping", true); // wrap lines in devtools
|
|
||||||
user_pref("browser.zoom.full", false); // text-only zoom, not all elements on page
|
|
||||||
user_pref("pdfjs.sidebarViewOnLoad", 2); // [HIDDEN] force showing of Table of Contents in sidebar for PDFs (if available)
|
|
||||||
user_pref("ui.key.menuAccessKey", 0); // remove underlined characters from various settings
|
|
||||||
user_pref("general.autoScroll", false); // disable unintentional behavior for middle click
|
|
||||||
user_pref("ui.SpellCheckerUnderlineStyle", 1); // dots for spell check errors
|
|
||||||
//user_pref("browser.tabs.loadInBackground", false); // CTRL+SHIFT+CLICK for background tabs; Settings>General>Tabs>"When you open a link, image or media in a new tab, switch to it immediately"
|
|
||||||
user_pref("media.videocontrols.picture-in-picture.display-text-tracks.size", "small"); // PiP
|
|
||||||
user_pref("media.videocontrols.picture-in-picture.urlbar-button.enabled", false); // PiP in address bar
|
|
||||||
user_pref("reader.parse-on-load.enabled", false); // disable reader mode
|
|
||||||
//user_pref("reader.color_scheme", "auto"); // match system theme for when reader is enabled
|
|
||||||
//user_pref("browser.urlbar.openintab", true); // stay on current site and open new tab when typing in URL bar
|
|
||||||
|
|
||||||
/** DELETE IF NOT NIGHTLY ***/
|
|
||||||
user_pref("layout.css.scroll-driven-animations.enabled", true); // CSS scroll-linked animations
|
|
||||||
//user_pref("javascript.options.experimental.shadow_realms", true); // Shadowrealms
|
|
||||||
//user_pref("javascript.options.wasm_gc", true); // Wasm GC
|
|
||||||
//user_pref("javascript.options.wasm_function_references", true); // Wasm Function references
|
|
||||||
user_pref("image.avif.sequence.enabled", true); // Animated AVIF
|
|
||||||
user_pref("cookiebanners.service.mode", 2); // block cookie banners natively
|
|
||||||
user_pref("cookiebanners.service.mode.privateBrowsing", 2); // block cookie banners natively in PB mode
|
|
||||||
user_pref("privacy.userContext.enabled", false); // disable Containers functionality
|
|
||||||
user_pref("browser.crashReports.unsubmittedCheck.enabled", false); // true by default on NIGHTLY
|
|
||||||
//user_pref("browser.urlbar.suggest.quickactions", false); // Quick Actions in URL bar
|
|
||||||
//user_pref("xpinstall.signatures.required", false); // [ESR/DEV/NIGHTLY]
|
|
||||||
|
|
||||||
/** DELETE IF NOT WINDOWS DESKTOP ***/
|
|
||||||
user_pref("network.trr.mode", 3); // enable TRR (without System fallback)
|
|
||||||
user_pref("pdfjs.defaultZoomValue", "125"); // DESKTOP; alt=page-width; PDF zoom level
|
|
||||||
//user_pref("dom.webgpu.enabled", true); // enable WebGPU
|
|
||||||
//user_pref("gfx.webgpu.force-enabled", true); // enable WebGPU
|
|
||||||
//user_pref("dom.ipc.processCount", 12); // Shared Web Content; 12-core CPU
|
|
||||||
//user_pref("dom.ipc.processCount.webIsolated", 12); // per-site; Isolated Web Content; 12-core CPU
|
|
||||||
user_pref("gfx.font_rendering.cleartype_params.rendering_mode", 5);
|
|
||||||
user_pref("gfx.font_rendering.cleartype_params.cleartype_level", 100);
|
|
||||||
user_pref("gfx.font_rendering.cleartype_params.force_gdi_classic_for_families", "");
|
|
||||||
user_pref("gfx.font_rendering.cleartype_params.force_gdi_classic_max_size", 6);
|
|
||||||
user_pref("gfx.font_rendering.directwrite.use_gdi_table_loading", false);
|
|
||||||
//user_pref("gfx.font_rendering.cleartype_params.gamma", 898); // 1000-2200; https://www.reddit.com/r/firefox/comments/10ed7o2/comment/j4qar9y/
|
|
||||||
user_pref("image.mem.decode_bytes_at_a_time", 262144); // alt=512000
|
|
||||||
user_pref("browser.cache.memory.capacity", 2097152); // fixed maximum 2 GB in memory cache
|
|
||||||
user_pref("browser.cache.memory.max_entry_size", 327680); // maximum size of in memory cached objects
|
|
||||||
//user_pref("media.memory_caches_combined_limit_pc_sysmem", 40);
|
|
||||||
user_pref("media.memory_caches_combined_limit_kb", 3145728);
|
|
||||||
//user_pref("font.name.serif.x-western", "Roboto Slab"); // serif font
|
|
||||||
//user_pref("font.name.sans-serif.x-western", "Roboto"); // sans-serif font
|
|
||||||
//user_pref("font.name.monospace.x-western", "Fira Code"); // monospace font
|
|
||||||
|
|
||||||
/** DELETE IF NOT macOS LAPTOP ***/
|
|
||||||
user_pref("network.trr.mode", 2); // enable TRR (with System fallback)
|
|
||||||
user_pref("pdfjs.defaultZoomValue", "page-width"); // LAPTOP; PDF zoom level
|
|
||||||
user_pref("app.update.auto", false); // disable auto-installing Firefox updates [NON-WINDOWS]
|
|
||||||
//user_pref("font.name.monospace.x-western", "SF Mono"); // monospace font
|
|
||||||
@@ -10,50 +10,52 @@
|
|||||||
/****************************************************************************
|
/****************************************************************************
|
||||||
* Betterfox *
|
* Betterfox *
|
||||||
* "Ad meliora" *
|
* "Ad meliora" *
|
||||||
* version: 115 *
|
* version: esr115.5 *
|
||||||
* url: https://github.com/yokoffing/Betterfox *
|
* url: https://github.com/yokoffing/Betterfox *
|
||||||
****************************************************************************/
|
****************************************************************************/
|
||||||
|
|
||||||
/****************************************************************************
|
/****************************************************************************
|
||||||
* SECTION: FASTFOX *
|
* SECTION: FASTFOX *
|
||||||
****************************************************************************/
|
****************************************************************************/
|
||||||
user_pref("nglayout.initialpaint.delay", 0);
|
|
||||||
user_pref("nglayout.initialpaint.delay_in_oopif", 0);
|
|
||||||
user_pref("content.notify.interval", 100000);
|
user_pref("content.notify.interval", 100000);
|
||||||
user_pref("browser.startup.preXulSkeletonUI", false);
|
|
||||||
|
|
||||||
/** EXPERIMENTAL ***/
|
/** EXPERIMENTAL ***/
|
||||||
user_pref("layout.css.grid-template-masonry-value.enabled", true);
|
user_pref("layout.css.grid-template-masonry-value.enabled", true);
|
||||||
user_pref("layout.css.animation-composition.enabled", true);
|
|
||||||
user_pref("dom.enable_web_task_scheduling", true);
|
user_pref("dom.enable_web_task_scheduling", true);
|
||||||
|
user_pref("layout.css.has-selector.enabled", true);
|
||||||
|
|
||||||
/** GFX ***/
|
/** GFX ***/
|
||||||
user_pref("gfx.webrender.all", true);
|
user_pref("gfx.canvas.accelerated.cache-items", 4096);
|
||||||
user_pref("gfx.webrender.precache-shaders", true);
|
user_pref("gfx.canvas.accelerated.cache-size", 512);
|
||||||
user_pref("gfx.webrender.compositor", true);
|
user_pref("gfx.content.skia-font-cache-size", 20);
|
||||||
user_pref("layers.gpu-process.enabled", true);
|
|
||||||
user_pref("media.hardware-video-decoding.enabled", true);
|
|
||||||
user_pref("gfx.canvas.accelerated", true);
|
|
||||||
user_pref("gfx.canvas.accelerated.cache-items", 32768);
|
|
||||||
user_pref("gfx.canvas.accelerated.cache-size", 4096);
|
|
||||||
user_pref("gfx.content.skia-font-cache-size", 80);
|
|
||||||
user_pref("image.cache.size", 10485760);
|
|
||||||
user_pref("image.mem.decode_bytes_at_a_time", 131072);
|
|
||||||
user_pref("image.mem.shared.unmap.min_expiration_ms", 120000);
|
|
||||||
user_pref("media.memory_cache_max_size", 1048576);
|
|
||||||
user_pref("media.memory_caches_combined_limit_kb", 2560000);
|
|
||||||
user_pref("media.cache_readahead_limit", 9000);
|
|
||||||
user_pref("media.cache_resume_threshold", 6000);
|
|
||||||
|
|
||||||
/** BROWSER CACHE ***/
|
/** BROWSER CACHE ***/
|
||||||
user_pref("browser.cache.memory.max_entry_size", 153600);
|
user_pref("browser.cache.disk.enable", false);
|
||||||
|
|
||||||
|
/** MEDIA CACHE ***/
|
||||||
|
user_pref("media.memory_cache_max_size", 65536);
|
||||||
|
user_pref("media.cache_readahead_limit", 7200);
|
||||||
|
user_pref("media.cache_resume_threshold", 3600);
|
||||||
|
|
||||||
|
/** IMAGE CACHE ***/
|
||||||
|
user_pref("image.mem.decode_bytes_at_a_time", 32768);
|
||||||
|
|
||||||
/** NETWORK ***/
|
/** NETWORK ***/
|
||||||
user_pref("network.buffer.cache.size", 262144);
|
|
||||||
user_pref("network.buffer.cache.count", 128);
|
|
||||||
user_pref("network.http.max-connections", 1800);
|
user_pref("network.http.max-connections", 1800);
|
||||||
user_pref("network.http.max-persistent-connections-per-server", 10);
|
user_pref("network.http.max-persistent-connections-per-server", 10);
|
||||||
user_pref("network.ssl_tokens_cache_capacity", 32768);
|
user_pref("network.http.max-urgent-start-excessive-connections-per-host", 5);
|
||||||
|
user_pref("network.websocket.max-connections", 400);
|
||||||
|
user_pref("network.http.pacing.requests.enabled", false);
|
||||||
|
user_pref("network.dnsCacheEntries", 10000);
|
||||||
|
user_pref("network.dnsCacheExpiration", 86400);
|
||||||
|
user_pref("network.dns.max_high_priority_threads", 8);
|
||||||
|
user_pref("network.ssl_tokens_cache_capacity", 20480);
|
||||||
|
|
||||||
|
/** SPECULATIVE CONNECTIONS ***/
|
||||||
|
user_pref("network.early-hints.enabled", true);
|
||||||
|
user_pref("network.early-hints.preconnect.enabled", true);
|
||||||
|
user_pref("network.predictor.enabled", false);
|
||||||
|
user_pref("network.predictor.enable-prefetch", false);
|
||||||
|
|
||||||
/****************************************************************************
|
/****************************************************************************
|
||||||
* SECTION: SECUREFOX *
|
* SECTION: SECUREFOX *
|
||||||
@@ -62,7 +64,7 @@ user_pref("network.ssl_tokens_cache_capacity", 32768);
|
|||||||
user_pref("browser.contentblocking.category", "strict");
|
user_pref("browser.contentblocking.category", "strict");
|
||||||
user_pref("urlclassifier.trackingSkipURLs", "*.reddit.com, *.twitter.com, *.twimg.com, *.tiktok.com");
|
user_pref("urlclassifier.trackingSkipURLs", "*.reddit.com, *.twitter.com, *.twimg.com, *.tiktok.com");
|
||||||
user_pref("urlclassifier.features.socialtracking.skipURLs", "*.instagram.com, *.twitter.com, *.twimg.com");
|
user_pref("urlclassifier.features.socialtracking.skipURLs", "*.instagram.com, *.twitter.com, *.twimg.com");
|
||||||
user_pref("privacy.query_stripping.strip_list", "__hsfp __hssc __hstc __s _hsenc _openstat dclid fbclid gbraid gclid hsCtaTracking igshid mc_eid ml_subscriber ml_subscriber_hash msclkid oft_c oft_ck oft_d oft_id oft_ids oft_k oft_lk oft_sk oly_anon_id oly_enc_id rb_clickid s_cid twclid vero_conv vero_id wbraid wickedid yclid");
|
user_pref("network.cookie.sameSite.noneRequiresSecure", true);
|
||||||
user_pref("browser.uitour.enabled", false);
|
user_pref("browser.uitour.enabled", false);
|
||||||
user_pref("privacy.globalprivacycontrol.enabled", true);
|
user_pref("privacy.globalprivacycontrol.enabled", true);
|
||||||
user_pref("privacy.globalprivacycontrol.functionality.enabled", true);
|
user_pref("privacy.globalprivacycontrol.functionality.enabled", true);
|
||||||
@@ -71,7 +73,6 @@ user_pref("privacy.globalprivacycontrol.functionality.enabled", true);
|
|||||||
user_pref("security.OCSP.enabled", 0);
|
user_pref("security.OCSP.enabled", 0);
|
||||||
user_pref("security.remote_settings.crlite_filters.enabled", true);
|
user_pref("security.remote_settings.crlite_filters.enabled", true);
|
||||||
user_pref("security.pki.crlite_mode", 2);
|
user_pref("security.pki.crlite_mode", 2);
|
||||||
user_pref("security.cert_pinning.enforcement_level", 2);
|
|
||||||
|
|
||||||
/** SSL / TLS ***/
|
/** SSL / TLS ***/
|
||||||
user_pref("security.ssl.treat_unsafe_negotiation_as_broken", true);
|
user_pref("security.ssl.treat_unsafe_negotiation_as_broken", true);
|
||||||
@@ -79,55 +80,38 @@ user_pref("browser.xul.error_pages.expert_bad_cert", true);
|
|||||||
user_pref("security.tls.enable_0rtt_data", false);
|
user_pref("security.tls.enable_0rtt_data", false);
|
||||||
|
|
||||||
/** DISK AVOIDANCE ***/
|
/** DISK AVOIDANCE ***/
|
||||||
user_pref("browser.cache.disk.enable", false);
|
|
||||||
user_pref("browser.privatebrowsing.forceMediaMemoryCache", true);
|
user_pref("browser.privatebrowsing.forceMediaMemoryCache", true);
|
||||||
user_pref("browser.sessionstore.privacy_level", 2);
|
user_pref("browser.sessionstore.interval", 60000);
|
||||||
|
|
||||||
/** SHUTDOWN & SANITIZING ***/
|
/** SHUTDOWN & SANITIZING ***/
|
||||||
user_pref("privacy.history.custom", true);
|
user_pref("privacy.history.custom", true);
|
||||||
|
|
||||||
/** SPECULATIVE CONNECTIONS ***/
|
|
||||||
user_pref("network.http.speculative-parallel-limit", 0);
|
|
||||||
user_pref("network.dns.disablePrefetch", true);
|
|
||||||
user_pref("browser.urlbar.speculativeConnect.enabled", false);
|
|
||||||
user_pref("browser.places.speculativeConnect.enabled", false);
|
|
||||||
user_pref("network.prefetch-next", false);
|
|
||||||
user_pref("network.predictor.enabled", false);
|
|
||||||
user_pref("network.predictor.enable-prefetch", false);
|
|
||||||
|
|
||||||
/** SEARCH / URL BAR ***/
|
/** SEARCH / URL BAR ***/
|
||||||
user_pref("browser.search.separatePrivateDefault.ui.enabled", true);
|
user_pref("browser.search.separatePrivateDefault.ui.enabled", true);
|
||||||
user_pref("browser.urlbar.update2.engineAliasRefresh", true);
|
user_pref("browser.urlbar.update2.engineAliasRefresh", true);
|
||||||
user_pref("browser.search.suggest.enabled", false);
|
user_pref("browser.search.suggest.enabled", false);
|
||||||
user_pref("browser.urlbar.suggest.quicksuggest.sponsored", false);
|
user_pref("browser.urlbar.suggest.quicksuggest.sponsored", false);
|
||||||
user_pref("browser.urlbar.suggest.quicksuggest.nonsponsored", false);
|
user_pref("browser.urlbar.suggest.quicksuggest.nonsponsored", false);
|
||||||
|
user_pref("browser.formfill.enable", false);
|
||||||
user_pref("security.insecure_connection_text.enabled", true);
|
user_pref("security.insecure_connection_text.enabled", true);
|
||||||
user_pref("security.insecure_connection_text.pbmode.enabled", true);
|
user_pref("security.insecure_connection_text.pbmode.enabled", true);
|
||||||
user_pref("network.IDN_show_punycode", true);
|
user_pref("network.IDN_show_punycode", true);
|
||||||
|
|
||||||
/** HTTPS-FIRST MODE ***/
|
/** HTTPS-FIRST POLICY ***/
|
||||||
user_pref("dom.security.https_first", true);
|
user_pref("dom.security.https_first", true);
|
||||||
|
|
||||||
/** PROXY / SOCKS / IPv6 ***/
|
|
||||||
user_pref("network.proxy.socks_remote_dns", true);
|
|
||||||
user_pref("network.file.disable_unc_paths", true);
|
|
||||||
user_pref("network.gio.supported-protocols", "");
|
|
||||||
|
|
||||||
/** PASSWORDS AND AUTOFILL ***/
|
/** PASSWORDS AND AUTOFILL ***/
|
||||||
user_pref("signon.formlessCapture.enabled", false);
|
|
||||||
user_pref("signon.privateBrowsingCapture.enabled", false);
|
|
||||||
user_pref("signon.autofillForms", false);
|
|
||||||
user_pref("signon.rememberSignons", false);
|
user_pref("signon.rememberSignons", false);
|
||||||
user_pref("editor.truncate_user_pastes", false);
|
user_pref("editor.truncate_user_pastes", false);
|
||||||
|
|
||||||
/** ADDRESS + CREDIT CARD MANAGER ***/
|
/** ADDRESS + CREDIT CARD MANAGER ***/
|
||||||
user_pref("extensions.formautofill.addresses.enabled", false);
|
user_pref("extensions.formautofill.addresses.enabled", false);
|
||||||
user_pref("extensions.formautofill.creditCards.enabled", false);
|
user_pref("extensions.formautofill.creditCards.enabled", false);
|
||||||
user_pref("extensions.formautofill.heuristics.enabled", false);
|
|
||||||
user_pref("browser.formfill.enable", false);
|
|
||||||
|
|
||||||
/** MIXED CONTENT + CROSS-SITE ***/
|
/** MIXED CONTENT + CROSS-SITE ***/
|
||||||
user_pref("network.auth.subresource-http-auth-allow", 1);
|
user_pref("network.auth.subresource-http-auth-allow", 1);
|
||||||
|
user_pref("security.mixed_content.block_display_content", true);
|
||||||
|
user_pref("security.mixed_content.upgrade_display_content", true);
|
||||||
user_pref("pdfjs.enableScripting", false);
|
user_pref("pdfjs.enableScripting", false);
|
||||||
user_pref("extensions.postDownloadThirdPartyPrompt", false);
|
user_pref("extensions.postDownloadThirdPartyPrompt", false);
|
||||||
user_pref("permissions.delegation.enabled", false);
|
user_pref("permissions.delegation.enabled", false);
|
||||||
@@ -146,20 +130,15 @@ user_pref("media.peerconnection.ice.default_address_only", true);
|
|||||||
user_pref("browser.safebrowsing.downloads.remote.enabled", false);
|
user_pref("browser.safebrowsing.downloads.remote.enabled", false);
|
||||||
|
|
||||||
/** MOZILLA ***/
|
/** MOZILLA ***/
|
||||||
user_pref("accessibility.force_disabled", 1);
|
|
||||||
user_pref("identity.fxaccounts.enabled", false);
|
|
||||||
user_pref("browser.tabs.firefox-view", false);
|
|
||||||
user_pref("permissions.default.desktop-notification", 2);
|
user_pref("permissions.default.desktop-notification", 2);
|
||||||
user_pref("permissions.default.geo", 2);
|
user_pref("permissions.default.geo", 2);
|
||||||
user_pref("geo.provider.network.url", "https://location.services.mozilla.com/v1/geolocate?key=%MOZILLA_API_KEY%");
|
user_pref("geo.provider.network.url", "https://location.services.mozilla.com/v1/geolocate?key=%MOZILLA_API_KEY%");
|
||||||
user_pref("geo.provider.ms-windows-location", false); // WINDOWS
|
|
||||||
user_pref("geo.provider.use_corelocation", false); // MAC
|
|
||||||
user_pref("geo.provider.use_gpsd", false); // LINUX
|
|
||||||
user_pref("geo.provider.use_geoclue", false); // LINUX
|
|
||||||
user_pref("permissions.manager.defaultsUrl", "");
|
user_pref("permissions.manager.defaultsUrl", "");
|
||||||
user_pref("webchannel.allowObject.urlWhitelist", "");
|
user_pref("webchannel.allowObject.urlWhitelist", "");
|
||||||
|
|
||||||
/** TELEMETRY ***/
|
/** TELEMETRY ***/
|
||||||
|
user_pref("datareporting.policy.dataSubmissionEnabled", false);
|
||||||
|
user_pref("datareporting.healthreport.uploadEnabled", false);
|
||||||
user_pref("toolkit.telemetry.unified", false);
|
user_pref("toolkit.telemetry.unified", false);
|
||||||
user_pref("toolkit.telemetry.enabled", false);
|
user_pref("toolkit.telemetry.enabled", false);
|
||||||
user_pref("toolkit.telemetry.server", "data:,");
|
user_pref("toolkit.telemetry.server", "data:,");
|
||||||
@@ -171,43 +150,52 @@ user_pref("toolkit.telemetry.bhrPing.enabled", false);
|
|||||||
user_pref("toolkit.telemetry.firstShutdownPing.enabled", false);
|
user_pref("toolkit.telemetry.firstShutdownPing.enabled", false);
|
||||||
user_pref("toolkit.telemetry.coverage.opt-out", true);
|
user_pref("toolkit.telemetry.coverage.opt-out", true);
|
||||||
user_pref("toolkit.coverage.opt-out", true);
|
user_pref("toolkit.coverage.opt-out", true);
|
||||||
user_pref("datareporting.healthreport.uploadEnabled", false);
|
user_pref("toolkit.coverage.endpoint.base", "");
|
||||||
user_pref("datareporting.policy.dataSubmissionEnabled", false);
|
|
||||||
user_pref("app.shield.optoutstudies.enabled", false);
|
|
||||||
user_pref("browser.discovery.enabled", false);
|
|
||||||
user_pref("breakpad.reportURL", "");
|
|
||||||
user_pref("browser.tabs.crashReporting.sendReport", false);
|
|
||||||
user_pref("browser.crashReports.unsubmittedCheck.autoSubmit2", false);
|
|
||||||
user_pref("captivedetect.canonicalURL", "");
|
|
||||||
user_pref("network.captive-portal-service.enabled", false);
|
|
||||||
user_pref("network.connectivity-service.enabled", false);
|
|
||||||
user_pref("default-browser-agent.enabled", false);
|
|
||||||
user_pref("app.normandy.enabled", false);
|
|
||||||
user_pref("app.normandy.api_url", "");
|
|
||||||
user_pref("browser.ping-centre.telemetry", false);
|
user_pref("browser.ping-centre.telemetry", false);
|
||||||
user_pref("browser.newtabpage.activity-stream.feeds.telemetry", false);
|
user_pref("browser.newtabpage.activity-stream.feeds.telemetry", false);
|
||||||
user_pref("browser.newtabpage.activity-stream.telemetry", false);
|
user_pref("browser.newtabpage.activity-stream.telemetry", false);
|
||||||
|
|
||||||
|
/** EXPERIMENTS ***/
|
||||||
|
user_pref("app.shield.optoutstudies.enabled", false);
|
||||||
|
user_pref("app.normandy.enabled", false);
|
||||||
|
user_pref("app.normandy.api_url", "");
|
||||||
|
|
||||||
|
/** CRASH REPORTS ***/
|
||||||
|
user_pref("breakpad.reportURL", "");
|
||||||
|
user_pref("browser.tabs.crashReporting.sendReport", false);
|
||||||
|
user_pref("browser.crashReports.unsubmittedCheck.autoSubmit2", false);
|
||||||
|
|
||||||
|
/** DETECTION ***/
|
||||||
|
user_pref("captivedetect.canonicalURL", "");
|
||||||
|
user_pref("network.captive-portal-service.enabled", false);
|
||||||
|
user_pref("network.connectivity-service.enabled", false);
|
||||||
|
|
||||||
/****************************************************************************
|
/****************************************************************************
|
||||||
* SECTION: PESKYFOX *
|
* SECTION: PESKYFOX *
|
||||||
****************************************************************************/
|
****************************************************************************/
|
||||||
/** MOZILLA UI ***/
|
/** MOZILLA UI ***/
|
||||||
user_pref("layout.css.prefers-color-scheme.content-override", 2);
|
user_pref("layout.css.prefers-color-scheme.content-override", 2);
|
||||||
user_pref("toolkit.legacyUserProfileCustomizations.stylesheets", true);
|
user_pref("toolkit.legacyUserProfileCustomizations.stylesheets", true);
|
||||||
user_pref("app.update.suppressPrompts", true);
|
|
||||||
user_pref("browser.compactmode.show", true);
|
user_pref("browser.compactmode.show", true);
|
||||||
user_pref("browser.privatebrowsing.vpnpromourl", "");
|
user_pref("browser.privatebrowsing.vpnpromourl", "");
|
||||||
user_pref("extensions.getAddons.showPane", false);
|
user_pref("extensions.getAddons.showPane", false);
|
||||||
user_pref("extensions.htmlaboutaddons.recommendations.enabled", false);
|
user_pref("extensions.htmlaboutaddons.recommendations.enabled", false);
|
||||||
|
user_pref("browser.discovery.enabled", false);
|
||||||
user_pref("browser.shell.checkDefaultBrowser", false);
|
user_pref("browser.shell.checkDefaultBrowser", false);
|
||||||
user_pref("browser.newtabpage.activity-stream.asrouter.userprefs.cfr.addons", false);
|
user_pref("browser.newtabpage.activity-stream.asrouter.userprefs.cfr.addons", false);
|
||||||
user_pref("browser.newtabpage.activity-stream.asrouter.userprefs.cfr.features", false);
|
user_pref("browser.newtabpage.activity-stream.asrouter.userprefs.cfr.features", false);
|
||||||
user_pref("browser.preferences.moreFromMozilla", false);
|
user_pref("browser.preferences.moreFromMozilla", false);
|
||||||
user_pref("browser.tabs.tabmanager.enabled", false);
|
user_pref("browser.tabs.tabmanager.enabled", false);
|
||||||
|
user_pref("browser.aboutConfig.showWarning", false);
|
||||||
user_pref("browser.aboutwelcome.enabled", false);
|
user_pref("browser.aboutwelcome.enabled", false);
|
||||||
user_pref("findbar.highlightAll", true);
|
user_pref("browser.display.focus_ring_on_anything", true);
|
||||||
user_pref("middlemouse.contentLoadURL", false);
|
user_pref("browser.display.focus_ring_style", 0);
|
||||||
|
user_pref("browser.display.focus_ring_width", 0);
|
||||||
|
user_pref("browser.privateWindowSeparation.enabled", false); // WINDOWS
|
||||||
user_pref("browser.privatebrowsing.enable-new-indicator", false);
|
user_pref("browser.privatebrowsing.enable-new-indicator", false);
|
||||||
|
user_pref("cookiebanners.service.mode", 2);
|
||||||
|
user_pref("cookiebanners.service.mode.privateBrowsing", 2);
|
||||||
|
user_pref("browser.translations.enable", true);
|
||||||
|
|
||||||
/** FULLSCREEN ***/
|
/** FULLSCREEN ***/
|
||||||
user_pref("full-screen-api.transition-duration.enter", "0 0");
|
user_pref("full-screen-api.transition-duration.enter", "0 0");
|
||||||
@@ -216,8 +204,6 @@ user_pref("full-screen-api.warning.delay", -1);
|
|||||||
user_pref("full-screen-api.warning.timeout", 0);
|
user_pref("full-screen-api.warning.timeout", 0);
|
||||||
|
|
||||||
/** URL BAR ***/
|
/** URL BAR ***/
|
||||||
user_pref("browser.urlbar.suggest.engines", false);
|
|
||||||
user_pref("browser.urlbar.suggest.topsites", false);
|
|
||||||
user_pref("browser.urlbar.suggest.calculator", true);
|
user_pref("browser.urlbar.suggest.calculator", true);
|
||||||
user_pref("browser.urlbar.unitConversion.enabled", true);
|
user_pref("browser.urlbar.unitConversion.enabled", true);
|
||||||
|
|
||||||
@@ -230,31 +216,29 @@ user_pref("extensions.pocket.enabled", false);
|
|||||||
|
|
||||||
/** DOWNLOADS ***/
|
/** DOWNLOADS ***/
|
||||||
user_pref("browser.download.useDownloadDir", false);
|
user_pref("browser.download.useDownloadDir", false);
|
||||||
|
user_pref("browser.download.always_ask_before_handling_new_types", true);
|
||||||
user_pref("browser.download.alwaysOpenPanel", false);
|
user_pref("browser.download.alwaysOpenPanel", false);
|
||||||
user_pref("browser.download.manager.addToRecentDocs", false);
|
user_pref("browser.download.manager.addToRecentDocs", false);
|
||||||
user_pref("browser.download.always_ask_before_handling_new_types", true);
|
|
||||||
|
|
||||||
/** PDF ***/
|
/** PDF ***/
|
||||||
user_pref("browser.download.open_pdf_attachments_inline", true);
|
user_pref("browser.download.open_pdf_attachments_inline", true);
|
||||||
|
|
||||||
/** TAB BEHAVIOR ***/
|
/** TAB BEHAVIOR ***/
|
||||||
user_pref("browser.tabs.loadBookmarksInTabs", true);
|
|
||||||
user_pref("browser.bookmarks.openInTabClosesMenu", false);
|
user_pref("browser.bookmarks.openInTabClosesMenu", false);
|
||||||
user_pref("layout.css.has-selector.enabled", true);
|
user_pref("browser.menu.showViewImageInfo", true);
|
||||||
user_pref("cookiebanners.service.mode", 2);
|
user_pref("findbar.highlightAll", true);
|
||||||
user_pref("cookiebanners.service.mode.privateBrowsing", 2);
|
|
||||||
|
|
||||||
/****************************************************************************
|
/****************************************************************************
|
||||||
* SECTION: SMOOTHFOX *
|
* SECTION: SMOOTHFOX *
|
||||||
****************************************************************************/
|
****************************************************************************/
|
||||||
// visit https://github.com/yokoffing/Betterfox/blob/master/Smoothfox.js
|
// visit https://github.com/yokoffing/Betterfox/blob/main/Smoothfox.js
|
||||||
// Enter your scrolling prefs below this line:
|
// Enter your scrolling prefs below this line:
|
||||||
|
|
||||||
/****************************************************************************
|
/****************************************************************************
|
||||||
* START: MY OVERRIDES *
|
* START: MY OVERRIDES *
|
||||||
****************************************************************************/
|
****************************************************************************/
|
||||||
// Enter your personal prefs below this line:
|
// Enter your personal prefs below this line:
|
||||||
|
//user_pref("gfx.canvas.accelerated", true); // enable if using a dedicated GPU on WINDOWS
|
||||||
/****************************************************************************
|
/****************************************************************************
|
||||||
* END: BETTERFOX *
|
* END: BETTERFOX *
|
||||||
****************************************************************************/
|
****************************************************************************/
|
||||||
|
|||||||
Reference in New Issue
Block a user