diff --git a/Common-Overrides.md b/Common-Overrides.md index 639f8b3..cd6c7b2 100644 --- a/Common-Overrides.md +++ b/Common-Overrides.md @@ -116,24 +116,6 @@ Change your default search engine to DuckDuckGo, or [add](https://github.com/yok ### Downloads -#### Always download files to the same location -* `☰` *→ Settings → General → Files and Applications → Downloads → Always ask you where to save files* -```javascript -// PREF: always download files to the same location -// [DIALOGUE] "Ask whether to open or save files" -// false=the user is asked where to save -user_pref("browser.download.useDownloadDir", true); -``` - -#### Choose where your downloads save to by default. -* `☰` *→ Settings → General → Files and Applications → Downloads → Save files to* -```javascript -// 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", 1); -``` - #### Do not show when downloads finish installing Turning off this setting can make it harder to know when a file starts downloading. ```javascript @@ -147,26 +129,21 @@ user_pref("browser.download.alwaysOpenPanel", false); ### Containers -Enable containers if you want to login to the same site under different accounts. For example, keeping work and personal browsing separate. +Enable the [containers](https://support.mozilla.org/en-US/kb/containers) feature if you want to login to the same site under different accounts. You may also want to install [Multi-Account Containers](https://addons.mozilla.org/en-US/firefox/addon/multi-account-containers/) for extra functionality. -:bulb: Because of improvements to Firefox, there's no longer a privacy advantage in using containers; but if you still find it useful, feel free to enable them. - ```javascript // PREF: enable Container tabs user_pref("privacy.userContext.enabled", true); - -// PREF: set behavior on "+ Tab" button to display container menu on left click [FF74+] -// [NOTE] The menu is always shown on long press and right click. -// [SETTING] General>Tabs>Enable Container Tabs>Settings>Select a container for each new tab -user_pref("privacy.userContext.newTabContainerOnLeftClick.enabled", true); ``` *** ### Better Scrolling -Firefox's default scrolling needs improvement. [Smoothfox](https://github.com/yokoffing/Betterfox/blob/main/Smoothfox.js) lets you customize scrolling to your liking. +Firefox's default scrolling [needs improvement](https://www.reddit.com/r/firefox/comments/y3wzwk/why_is_scrolling_so_janky_on_firefox/). + +[Smoothfox](https://github.com/yokoffing/Betterfox/blob/main/Smoothfox.js) provides a far better scroll experience. ***