2
When I press control-D in Firefox on an un-bookmarked page, a dialogue opens, letting me pick a title and other options for the bookmark to be created. However, if it takes me longer than 3.5 seconds, for example because I need to think about the title, or about which folder to store it in, or if I am in doubt whether to save it at all, the dialogue automatically closes and the bookmark is created.
This peculiar behaviour seems strange to me, automatically changing things which are stored permanently, and which can be important.
Is there a way to turn off this behaviour, or at least increase the delay? Based on this suggestion, I have created a file NewBookmarkDialogueDelay.js
in the folder D:\
(my user)\AppData\Roaming\Mozilla\Firefox\Profiles\
(my profile)\chrome
, containing the following code:
(function() {
if (window.StarUI) {
const delay = 60;
StarUI._autoCloseTimeout = delay * 1000;
}
})();
But that did nothing. How can this be accomplished? I'm using Firefox 66.0.3 in Windows 10.
Gosh, how weird. Thanks for the information. If there is really no way to fix this from within Firefox, I'll make an Autohotkey script to fix it (e.g. by automatically moving the mouse over the dialogue for a split second whenever the bookmark dialogue appears). – Cerberus – 2019-05-02T20:14:06.643
You're right : It's enough that the cursor hovers over the dialog, no click required. – harrymc – 2019-05-02T20:21:05.067
I will! But I'll wait a while first, in case someone else happens to have new/other info. – Cerberus – 2019-05-02T20:54:13.587
...and, if you think my question was valid, you might consider voting for it. – Cerberus – 2019-05-05T21:52:43.857