Ceisteanna leis an gclib seo á dtaispeáint:

How to disable Private Browsing Mode with Firefox Flatpak version

I'm trying to get my Firefox installation to permanently disable private browsing mode, however, all information I can find is for the Snap version of Firefox, and not fo… (tuilleadh eolais)

I'm trying to get my Firefox installation to permanently disable private browsing mode, however, all information I can find is for the Snap version of Firefox, and not for the Flatpak version. How do I disable private browsing on my installation?

Réitithe Cartlannaithe 4 289

Firefox Multi-Account Containers | Container Name in URL Bar

Firefox 126.0.1 displays a very long name of a container completely in the URL bar. Firefox 127.0 truncates container names AWS long account and role names make keeping t… (tuilleadh eolais)

Firefox 126.0.1 displays a very long name of a container completely in the URL bar.

Firefox 127.0 truncates container names

AWS long account and role names make keeping the long name very convenient (works with the 'AWS SSO Containers' Add-On

Réitithe Cartlannaithe 5 289

Firefox 127 - close tab button missing for background tabs when more than 10 tabs opened

In previous versions I was able to open around 15-20 tabs before X button disappeared from them and I was no longer able to close them without activating them first. Now … (tuilleadh eolais)

In previous versions I was able to open around 15-20 tabs before X button disappeared from them and I was no longer able to close them without activating them first.

Now this happens much earlier - only 10 tabs is enough on my 1080p 100% scaling desktop and 9 tabs on my 1080p 125% notebook.

X button is present if you have 10 tabs or less, but disappears with 11 tabs, when there is still plenty of space on tabs to click on X!

I compared it to brave and in brave you can still have 22 tabs opened before X button disappears!

Anyone has any method to force presence of x button? This is really annoying as I often have much tabs open and close only 2-3 of them. Now I have to open each one again to be able to close it.

Réitithe Cartlannaithe 2 274

Saving files instead of opening and saving in TEMP folder!

Before the recent 1-2 updates, pdfs,pictures and .torrent meta files used to get saved in temp folder which I LOVED very much. Recently these are getting save in my down… (tuilleadh eolais)

Before the recent 1-2 updates, pdfs,pictures and .torrent meta files used to get saved in temp folder which I LOVED very much. Recently these are getting save in my download folder instead of saving in the temp folder.

I changed this setting to allows ask. Still the files are getting saved in the download folder after opening.

Please assist me to resolve this issue. Thanks.

Réitithe Cartlannaithe 1 270

How to force spellcheck for all websites

I would like to force spellcheck for all websites, and override any HTML code from the websites. which may be disabling it. This should be done automatically and not by i… (tuilleadh eolais)

I would like to force spellcheck for all websites, and override any HTML code from the websites. which may be disabling it. This should be done automatically and not by inspecting and manually altering the HTML. I consulted with ChatGPT and tried adding some code to my existing userChrome.css but it is having no effect, even after clearing cache and restarting Firefox. For instance, faxzero.com has a form with spellcheck disabled. I tinkered with the CSS and kept testing faxzero, but the spellcheck always remains disabled. How can I accomplish my goal?

Code: body[spellcheck="false"], input[type="text"][spellcheck="false"], input[type="email"][spellcheck="false"], input[type="password"][spellcheck="false"], input[type="search"][spellcheck="false"], input[type="url"][spellcheck="false"], textarea[spellcheck="false"], [contenteditable="true"][spellcheck="false"] {

   spellcheck: true !important;

}

Réitithe Cartlannaithe 3 264

Double icons on Stop & Reload buttons when using custom icons

When reloading a page, or navigating to a new page, the default Stop icon momentarily appears over my own Reload icon, and the default Reload icon also appears over my St… (tuilleadh eolais)

When reloading a page, or navigating to a new page, the default Stop icon momentarily appears over my own Reload icon, and the default Reload icon also appears over my Stop icon.

Please see attached image and animation.

Any idea if this is a minor bug?

Below is my code to split the Reload button into Reload & Stop buttons, then to add text to the navigation buttons, and finally to add icons to the navigation buttons.

This anomaly happens whether or not I split the Reload & Stop buttons. With just a single Reload button, I'm also seeing the default Reload icon appear over my own.

Thank you.

/* ---------- SPLIT RELOAD BUTTON INTO RELOAD & STOP ------------- */
#reload-button, #stop-button {
   display: inherit !important; 
} 
#reload-button > .toolbarbutton-icon {
  -moz-appearance: none !important; 
}


/* ------------ ADD TEXT LABELS TO NAVIGATION TOOLBAR BUTTONS --------------- */
/* Shows both icon and label for toolbarbuttons */
toolbar .toolbarbutton-1[label]{
  flex-direction: column;
  align-items: center !important;
}
toolbar .toolbarbutton-1[label]:not([disabled]):hover{ background-color: var(--toolbarbutton-hover-background) !important; }
toolbar .toolbarbutton-1[label] > .toolbarbutton-icon,
toolbar .toolbarbutton-1[label] > .toolbarbutton-badge-stack{
  padding: var(--toolbarbutton-inner-padding) !important;
  padding-bottom: 0px !important;
  height: calc(var(--toolbarbutton-inner-padding) + 16px) !important;
  border: none !important;
  background-color: transparent !important;
  box-shadow: none !important;
}
toolbar .toolbarbutton-1[label] > .toolbarbutton-text {
  display: flex !important;
  min-height: 16px !important;
  padding-top: 3px !important;
  padding-bottom: 6px !important;
  background-color: transparent !important;
  overflow: hidden;
  width: 9ch; /* changes space between buttons */
}
toolbar .toolbarbutton-1[label] > .toolbarbutton-text::before{
  margin-inline: auto;
 }
:root:not([uidensity="compact"]) toolbar .toolbarbutton-1[label] > .toolbarbutton-text{ padding: 2px !important; }


/* ------------ ADD CUSTOM ICONS TO NAVIGATION TOOLBAR BUTTONS ----------- */
#back-button {
   list-style-image: url("image/back.png") !important;
   padding-top: 8px !important;
}
#back-button image{
   max-height: 16px !important; 
   max-width: 16px !important;
   padding: 0px !important;
   margin-bottom: 3px !important;
}
#forward-button {
   list-style-image: url("image/forward.png") !important;
   padding-top: 8px !important;
}
#forward-button image{
   max-height: 16px !important; 
   max-width: 16px !important;
   padding: 0px !important;
   margin-bottom: 3px !important;
}
#reload-button {
   list-style-image: url("image/reload.png") !important;
   padding-top: 8px !important;
}
#reload-button image{
   max-height: 16px !important; 
   max-width: 16px !important;
   padding: 0px !important;
   margin-bottom: 3px !important;
}
#stop-button {
   list-style-image: url("image/stop.png") !important;
   padding-top: 8px !important;
}
#stop-button image{
   max-height: 16px !important; 
   max-width: 16px !important;
   padding: 0px !important;
   margin-bottom: 3px !important;
}
#print-button {
   list-style-image: url("image/print.png") !important;
   padding-top: 8px !important;
}
#print-button image{
   max-height: 16px !important; 
   max-width: 16px !important;
   padding: 0px !important;
   margin-bottom: 3px !important;
}
#home-button {
   list-style-image: url("image/home.png") !important;
   padding-top: 8px !important;
}
#home-button image{
   max-height: 16px !important; 
   max-width: 16px !important;
   padding: 0px !important;
   margin-bottom: 3px !important;
}
Réitithe Cartlannaithe 4 258

I can't restore my search bar

My search box disappeared. I know about clicking the 3 horizontal lines, selecting customize and dragging the box. Actually the box is still there on the customize scre… (tuilleadh eolais)

My search box disappeared. I know about clicking the 3 horizontal lines, selecting customize and dragging the box. Actually the box is still there on the customize screen, but not in any other tabs.

Dragging a second box does nothing. Refreshing Firefox does nothing. Rebooting does nothing. Firefox 125.0.2

Réitithe Cartlannaithe 6 257

Firefox download audio files instead of playing unlike other browsers?

In my experience with the TF2 Wiki page, clicking an audio file link would open a new tab where I can play the file. Since I've moved to firefox, I can no longer do this.… (tuilleadh eolais)

In my experience with the TF2 Wiki page, clicking an audio file link would open a new tab where I can play the file. Since I've moved to firefox, I can no longer do this. Instead, the file downloads. Is there a way to change this? I saw in another post that you have to change the flag media.play-stand-alone to true but it was already true.

Réitithe Cartlannaithe 4 254

Slowly fullscreen animation with transparent tabbar

here is the video: https://streamable.com/zffknq the issue is about transparent bar with vertical addons and slowly fullscreen animation, and the fullscreen animation is… (tuilleadh eolais)

here is the video: https://streamable.com/zffknq the issue is about transparent bar with vertical addons and slowly fullscreen animation, and the fullscreen animation isn't config-able, I already set full-screen-api.transition-duration.enter 0 0 full-screen-api.transition-duration.leave 0 0 in about:config, and disable sidebar or userChrome is not work too. and this is happend about one mouth ago after my nixos update firefox.

Réitithe Faoi Ghlas Cartlannaithe 1 252

How to force firefox to start as specific height width?

hi i just got firefox setup just as i want so dont want to reset it. yes i have used arkenfox to beef up pivacy. only problem is i assume fingerprint disabling has made t… (tuilleadh eolais)

hi

i just got firefox setup just as i want so dont want to reset it. yes i have used arkenfox to beef up pivacy.

only problem is i assume fingerprint disabling has made the window size like tor browser.

is there a way via the shortcut to "c:\mozilla\firefox\firefox.exe" -height 1024 -width 1600

does not work

"c:\mozilla\firefox\firefox.exe" -height 1024 -width 1600 -P default

does not work

how do i fix this? using this method? as i would prefer to do this way

alternatively prefs.js / is there a way to do it there?

simple step by step instructions please

your time and help is appreciated.

thx

Réitithe Cartlannaithe 2 245

MimeTypes.rdf missing

Hi, I'm using FF on Fedora 39. However Firefox does not remember any file associations. The MimeTypes.rdf file in the profile is missing and is also not created on restar… (tuilleadh eolais)

Hi,

I'm using FF on Fedora 39.

However Firefox does not remember any file associations. The MimeTypes.rdf file in the profile is missing and is also not created on restarting the browser.

In the options I've now set the configuration to "Ask whether to open or save files". Now I see a popup when clicking on a file however there is no checkbox with "remember this file associations" (or something similiar).

Réitithe Cartlannaithe 3 233

ALT-SHIFT-LEFT got remapped to 'select tab to the left' out of the blue

ALT-SHIFT-LEFT has been 'select word backwards' for years, at least on macs. And so it was on FF too. Now they suddenly decided to re-map it to 'select left tab'. There w… (tuilleadh eolais)

ALT-SHIFT-LEFT has been 'select word backwards' for years, at least on macs. And so it was on FF too. Now they suddenly decided to re-map it to 'select left tab'. There was already a key for that - CMD-ALT-LEFT. Which also works for the right, whereas ALT-SHIFT-RIGHT does nothin

Réitithe Cartlannaithe 3 226

Pop-up confirmation for Protocol Handlers

Hi, I've noticed an inconsistency when clicking on Web-based protocol handlers in Firefox on Windows. Specifically, when I click on a mailto protocol, such as "mailto:ema… (tuilleadh eolais)

Hi, I've noticed an inconsistency when clicking on Web-based protocol handlers in Firefox on Windows. Specifically, when I click on a mailto protocol, such as "mailto:email@example.com," it directly opens my default email application without any confirmation prompt. However, when I click on any other protocol handler, a confirmation pop-up appears, asking me to confirm which application to use. I have attached an example of what I mean.

Is there a way to configure Firefox to always show a confirmation pop-up for all protocol handlers, including mailto links? I prefer to have the option to choose the application each time rather than automatically using the default one.

Réitithe Cartlannaithe 1 224

Borderline between text bar and tab bar.

So i wanted to remove borderline between text bar and tab bar. After some googling i manege to do so by console(contl+shift+alt+i), in string "--tabs-navbar-separator-col… (tuilleadh eolais)

So i wanted to remove borderline between text bar and tab bar. After some googling i manege to do so by console(contl+shift+alt+i), in string "--tabs-navbar-separator-color: light-dark(rgba(0,0,0,.1), rgba(0,0,0,.3));" i change 3 to 0 and borderline gone. But every time i restart browser is all back. Is there any way to make it permanent ?

Réitithe Cartlannaithe 1 223

Firefox not following application settings

I have Firefox set to "view PDF files in Firefox", but this is not happening with sites like Capital One and Consumer's Energy. these sites are just saving directly to m… (tuilleadh eolais)

I have Firefox set to "view PDF files in Firefox", but this is not happening with sites like Capital One and Consumer's Energy. these sites are just saving directly to my downloads folder even though I 1) Want to view the file first and 2) if it is going to save a flle, it is set up to ask where the file should be saved.

Neither of these things are happening even though I have them set up correctly in Settings.

Réitithe Cartlannaithe 1 215

Customize Links on Firefox New Tab Page

For many years I have used the ability to set shortcuts to website on the Firefox home tab, using the method given at: https://support.mozilla.org/en-US/kb/customize-item… (tuilleadh eolais)

For many years I have used the ability to set shortcuts to website on the Firefox home tab, using the method given at: https://support.mozilla.org/en-US/kb/customize-items-on-firefox-new-tab-page#w_pin-unpin-or-remove-a-shortcut.

However, today, when I try to edit a shortcut link, I do not get the 3 dots menu by right clicking on a shortcut tile.

Is this a recent change, a bug, an issue with my installation (which has been stable for many years)?

How can I get back the functionality back?

I am using Firefox 127.0 (64 bit) on Windows (Windows 11, all up to date).

Réitithe Cartlannaithe 4 212

Ctrl+Shift+B to open Library in 117

I like Ctrl+Shift+B to open the Library (Manage Bookmarks/Show All Bookmarks). For maybe two years I was using this, but it stopped working in 117: https://reddit.com/r/… (tuilleadh eolais)

I like Ctrl+Shift+B to open the Library (Manage Bookmarks/Show All Bookmarks). For maybe two years I was using this, but it stopped working in 117:

https://reddit.com/r/firefox/comments/kilmm2/restore_ctrlshiftb_library_by_setting_configjs/

Dorando keyconfig isn't current. Shortkeys won't even install and probably won't do what I want anyway. AutoHotkey will do it, but I'd rather not use it for this.

Does anyone know how I can get a config.js to open the Library when I hit Ctrl+Shift+B?

Réitithe Cartlannaithe 3 200

The new apostrophe quicksearch-function is a problem for me

Hello There seems to be a new function that opens a quick search window when I press the apostrophe key. This function is active on many websites, and I am using Firefox… (tuilleadh eolais)

Hello

There seems to be a new function that opens a quick search window when I press the apostrophe key. This function is active on many websites, and I am using Firefox 125.0.3 on a Macbook Air.

This new function makes it very difficult for me to practice touch typing in Firefox, and I would like to turn this function of.

Best regards Max Andersson

Réitithe Cartlannaithe 2 198

MacOS keeps opening the old Pixelmator not Pixelmator Pro

When I download an image in Firefox and open it from the downloads folder it will always open in Pixelmator not Pixelmator Pro. If I double click on an image file elsewhe… (tuilleadh eolais)

When I download an image in Firefox and open it from the downloads folder it will always open in Pixelmator not Pixelmator Pro.

If I double click on an image file elsewhere they correctly open in Pro, but in Finder, the icons are for Pixelmator not Pixelmator Pro. This can be hidden if I turn on finder icon previews, but selecting Get Info always has the Pixelmator icon not the Pixelmator Pro one.

Im not sure if this is a macOS problem, a firefox issue or a Pixelmator bug but it seems to be related to the way the files are registered.

Things I have tried:

Changing file associations in firefox. Rebooting Changing the open-with properties in finder: Open all with Pixelmator Pro Reset the Local & User domains with lsregister lsregister -kill -r -domain local -domain user -domain system -v

Réitithe Cartlannaithe 2 192