1
0
mirror of https://github.com/yokoffing/Betterfox.git synced 2026-06-12 15:40:48 +05:30

Updated Common Overrides (markdown)

yokoffing
2023-10-10 13:20:58 -04:00
parent 323212ab1b
commit 0b08791abc
+3 -2
@@ -143,11 +143,12 @@ user_pref("browser.download.useDownloadDir", true);
user_pref("browser.download.folderList", 1);
```
#### Do not show downloads when they're done
#### Do not show when downloads finish installing
Turning off this setting can make it harder to know when a file starts downloading.
```javascript
// PREF: disable Downloads panel opening after every download
// Control whether to open the downloads panel every time a download begins.
// The first download ever ran in a new profile will still open the panel.
// [NOTE] The first download ever ran in a new profile will still open the panel.
user_pref("browser.download.alwaysOpenPanel", false);
```