I'd like to make the Findbar in Firefox always visible; ie. I don't want to have to press Ctrl+F or do Main Menu > Edit > Find in This Page. (Sometimes the web page will override the keyboard shortcuts, and I'm using AutoHotkey GUI automation to search for items in my web page.)
This is a question I asked a few years ago, with no perfect answer since apparently Firefox simply doesn't allow it, but with some workaround solution that worked in 2019 but no longer seems to apply to the Firefox v105.
Previously, in 2005, one could make the Findbar always appear with this in the userChrome.css file:
#FindToolbar {
display: -moz-box !important;
}
I found this at http://forums.mozillazine.org/viewtopic.php?t=243750&highlight=
Later, in October 2019, @BoffinBrain let me know that the element I was looking for was now called "findbar", and I could put this:
findbar {
display: -moz-box !important;
visibility: visible !important;
margin-bottom: 0 !important;
opacity: 1 !important;
}
This is from my question at How to make Firefox Findbar automatically appear and permanent? (BoffinBrain also put how to remove the close button of the Findbar, but I didn't need that since I would simply remember not to voluntarily close the Findbar.)
This solution no longer works in my current Firefox v105, as the Findbar behaviour has reverted to disappearing after a few seconds.
I am hoping someone can tell me that the "findbar" is now called something else, and I can just make a tweak to the code above and make the findbar persistent, but I will happily take any solution that keeps the Findbar on the screen.
Yes, I did follow the links in #BoffinBrain's reply, turned on the Browser Chrome and Add-On Debugging Toolboxes, and tried to inspect the web page that was actually the browser interface itself, but I could not find the Findbar (it was as if the Findbar didn't exist, even though I could see elements for the rest of the interface).
As an aside comment, I do find it disturbing that, whereas it used to be easy to do a Google search for solutions to software configuration problems, now it's hard to tell when a result is out of date, especially with Firefox things that apply to older versions but not newer ones.