Ceisteanna leis an gclib seo á dtaispeáint: Taispeáin gach ceist

alert about firefox 78.15.0esr 64-bit for mac el capitan 10.11.6

Hello, I have old 15 year old mac el capitan -10.11.r with outdated firefox 78.15.0esr 64-bit.... in perfect condition. Unfortunately I can not make updates on browser a… (tuilleadh eolais)

Hello,

I have old 15 year old mac el capitan -10.11.r with outdated firefox 78.15.0esr 64-bit.... in perfect condition. Unfortunately I can not make updates on browser anymore. Online banking websites does not allow me to use this outdated browser. Would you be so kind to make even paid update for me? Or at least let me know what settings I should change under about:config

Waiting to hear from you! [edited email from public]

Asked by Paul Hyski 1 mhí ó shin

Last reply by James (On Leave) 1 mhí ó shin

URL high lighting

Is there a way to make the URL high lighting of the domain more obvious? I find that most people can barely see the highlighting and I'd like to make it obvious (bolder … (tuilleadh eolais)

Is there a way to make the URL high lighting of the domain more obvious? I find that most people can barely see the highlighting and I'd like to make it obvious (bolder and red, or highlighted in yellow, for instance.)

Can this be done via userchrome.css?

Thanks,

Thane

Asked by tsherr 2 mhí ó shin

Last reply by jeff-g 2 mhí ó shin

Can I disable or configure the delay when Firefox shows the "Open the {thing} link with {App}?" dialog?

I have bookmarks for the application Obsidian, which uses the obsidian:// protocol, registered in Windows. I type the bookmark keyword, it opens the protocol, and asks to… (tuilleadh eolais)

I have bookmarks for the application Obsidian, which uses the obsidian:// protocol, registered in Windows. I type the bookmark keyword, it opens the protocol, and asks to confirm whether I not want to open it.

While I wish I could get rid of the entire dialog, I understand that's a security risk, and I understand that the manual delay is ALSO a security detail (to prevent errant or intentional mis-clicks by malicious websites), I want to disable it.

I'm aware there's a lot of hidden configuration options, but I can't even find the name of what this dialog is called. Every search I have for it yields unrelated results. "Open with" is the only idea I have now, so maybe I should start searching for what the integration or protocol is called within Windows. Maybe that'll put me on the right track.

So, can I disable OR 'configure the confirmation dialog, either altogether OR the delay?

Asked by Xevion 1 mhí ó shin

Firefox Dev Tools doesn't show css changes after closing and re-opening dev tools

Steps to recreate: Open any website Make any css changes. These will be shown in the Changes tab in the dev tools Close dev tools, then re-open. Now those changes… (tuilleadh eolais)

Steps to recreate:

  1. Open any website
  2. Make any css changes. These will be shown in the Changes tab in the dev tools
  3. Close dev tools, then re-open. Now those changes won't be shown

Sometimes I need to close dev tools in order to see how the web page would look normally.

Asked by gurungsujal 5 mhí ó shin

Last reply by jscher2000 - Support Volunteer 5 mhí ó shin

Firefox Cache Management and New Tab Behavior Improvement Request

Hi all, I’ve been using Firefox for a while now, but coming from Chrome, I’m finding some aspects of Firefox’s cache management and tab behavior a bit inconvenient, and … (tuilleadh eolais)

Hi all,

I’ve been using Firefox for a while now, but coming from Chrome, I’m finding some aspects of Firefox’s cache management and tab behavior a bit inconvenient, and I wanted to share my thoughts.

The issue:

When I restart Firefox (version 133.0.3-1), it loads webpages from the disk cache, which is fine because I’ve set browser.cache.disk.enable to true and browser.cache.check_doc_frequency to 2, it will always make a request to the server on restarting Firefox with the default value of 3. However, the problem arises when I open new tabs — they also load from the disk cache instead of requesting fresh content from the server.

What I’m looking for:

   A way to have Firefox:

Load webpages from the disk cache when restarting the browser (which I want, and I have set browser.cache.disk.enable to true for this). But always make fresh requests from the server when opening new tabs, no matter what the cache settings are.

In Chrome, this behavior is more intuitive — it loads from the cache after restart but always fetches from the server for new tabs, which I find to be much more reasonable.

I understand that about:config provides settings like browser.sessionstore.restore_on_demand, but adjusting this option makes Firefox fetch content from the server for all tabs, including those opened after a restart. This doesn’t seem like a perfect solution because it takes away the ability to use the disk cache after restarting the browser.

I would really appreciate it if Firefox could offer more granular control over this behavior, so users could get the benefits of both caching and real-time requests based on the type of tab (restart vs. new tab).

Thanks for your attention, and I hope to see some improvements in future updates!

Asked by Universe 5 mhí ó shin

Last reply by hyperinterceptor 5 mhí ó shin

I Created the Perfect Firefox Look, but I Can’t Use It cuz of userChrome.js

I spent a ton of time perfecting my Firefox, making it look exactly how I wanted… but there’s one huge problem. My entire setup relies on userChrome.js, and I haven’t fou… (tuilleadh eolais)

I spent a ton of time perfecting my Firefox, making it look exactly how I wanted… but there’s one huge problem. My entire setup relies on userChrome.js, and I haven’t found a way to make it run permanently without pain.

I’m completely out of energy trying to fix this. But maybe someone here knows a proper workaround?

No js loaders and other hacks worked, so I’m sharing the full code. Maybe you can help me figure out a way to keep it running consistently?

Here’s my code:

function fixTabOrientation() {

   let tabbrowserTabs = document.getElementById("tabbrowser-tabs");
   let arrowscrollbox = document.getElementById("tabbrowser-arrowscrollbox");
   let newTabButton = document.getElementById("tabs-newtab-button");
   let peripheryBox = document.getElementById("tabbrowser-arrowscrollbox-periphery");
   let navBar = document.getElementById("nav-bar-customization-target"); 
   let urlBar = document.getElementById("urlbar-container"); // Адресний рядок


   if (tabbrowserTabs?.getAttribute("orient") !== "horizontal") {
       tabbrowserTabs.setAttribute("orient", "horizontal");
   }
   if (arrowscrollbox?.getAttribute("orient") !== "horizontal") {
       arrowscrollbox.setAttribute("orient", "horizontal");
   }


   if (navBar && urlBar && !urlBar.nextSibling?.isSameNode(tabbrowserTabs)) {
       navBar.insertBefore(tabbrowserTabs, urlBar.nextSibling);
   }


   if (newTabButton) {
       newTabButton.style.position = "absolute";
       newTabButton.style.right = "10px"; 
       newTabButton.style.top = "50%"; 
       newTabButton.style.transform = "translateY(-50%)"; 


       if (peripheryBox && !peripheryBox.contains(newTabButton)) {
           peripheryBox.appendChild(newTabButton);
       }
       newTabButton.style.display = "block";  
       newTabButton.style.width = "32px";
       newTabButton.style.height = "32px";
   } else {
       console.log("New Tab");
   }

}

fixTabOrientation(); setInterval(fixTabOrientation, 1000);


Any work solutions would be massively appreciated—I’m honestly exhausted fighting this.

Asked by III 2 mhí ó shin

Can't find about:config preferences page

After typing in about:config and clicking on the 3 lines top r.h. corner I'm supposed to get a page that list preferences. (using Wndows 11) That page does not appear. I … (tuilleadh eolais)

After typing in about:config and clicking on the 3 lines top r.h. corner I'm supposed to get a page that list preferences. (using Wndows 11) That page does not appear. I wish to change my value for width scrollbar width from zero to 4. I have also accessed videos - with sound -but find i very hard to follow the voice of the presenter because he/she talks far too fast, and in many instances is outdated! I need a page on screen that tells me to type in specific keystroke to get to the page that lists a preference I can change.

Asked by Col SARLL 3 mhí ó shin

Last reply by James (On Leave) 3 mhí ó shin

  • Faoi Ghlas

About:config setting reverts upon Firefox restart

duplicate of /questions/1509077 thread Hi. There is a new feature of Firefox that bothers me. It is when I drag tabs around the top, they try to group when I don't want … (tuilleadh eolais)

duplicate of /questions/1509077 thread

Hi. There is a new feature of Firefox that bothers me. It is when I drag tabs around the top, they try to group when I don't want them to. So I go to about:config and find the "browser.tabs.groups.enabled" key and set it to false. But when I restart Firefox, the change reverts. How do I fix this so the change stays?

I've already tried going to Menu->Help->More troubleshooting information->Profile Folder->Open folder, but there is no "user.js" file there. Do I have to do a Firefox reset to fix this? I hope not...

Note that I'm pretty sure that other settings that I change do not revert when I restart Firefox. Right now, it seems to be just this one about:config setting, unless the new version of Firefox reverts all manually changed about:config settings upon restart.

Thanx in advance for any help.

Asked by jjbradbury 1 mhí ó shin

  • Cartlannaithe

Tabs Switching

Hello, I have an issue where, when I switch tabs with Ctrl+Tab, my mouse cursor accidentally triggers something if it happens to be in the center. This is very annoying.… (tuilleadh eolais)

Hello,

I have an issue where, when I switch tabs with Ctrl+Tab, my mouse cursor accidentally triggers something if it happens to be in the center. This is very annoying. I tried Googling how to turn off tab visualization through the config, but it hasn't worked so far.

   * browser.ctrlTab.previews

  • browser.tabs.closeWindowWithLastTab
  • browser.tabs.animate
  • toolkit.cosmeticAnimations.enabled

So now, the only option I see is to turn off Recent Tabs, but then the browser becomes unusable. I also tried the same on a new clean user profile and even on new Mozilla-based browsers, but still nothing. It would be ideal to make the cursor inactive while switching tabs, like it is in Arc Browser and probably many others. But I would be happy enough to just turn off tab switching visualization.

Asked by xuaaru 6 mhí ó shin

Last reply by jscher2000 - Support Volunteer 6 mhí ó shin

Tab Tooltips Not Showing Up

Hello, I have been experiencing this issue for a while, but only just now noticed it. When I hover over a tab, nothing shows up; no preview, no title, no web address, n… (tuilleadh eolais)

Hello,

I have been experiencing this issue for a while, but only just now noticed it. When I hover over a tab, nothing shows up; no preview, no title, no web address, nothing. I have a few extensions, but uninstalled any that would effect tabs at all, with no change. All other extensions I have had since I switched over to Firefox. I have attempted to search for solutions, and have followed what I found. Multiple support questions here have gotten the answer of going into the config to change the following Boolean variables to be true:

   browser.tabs.hoverPreview.enabled 
   browser.tabs.hoverPreview.showThumbnails 

but when I went to do so, they were both already set to true. I disabled and then re-enabled them just to check, but nothing changed. I have a ridiculous amount of tabs open, but that's the only other thing I can think of that would be causing this issue. Just in case, I am in the process of closing as many as I can.

Any advice or assistance would be appreciated.

Thank you.

Asked by naturegeek00 5 mhí ó shin

Last reply by cor-el 5 mhí ó shin

layout.css.devPixelsPerPx setting

I have to manually change the layout.css.devPixelsPerPx setting evertime I switch from my laptop to an external monitor. What can I do to avoid this every single time? … (tuilleadh eolais)

I have to manually change the layout.css.devPixelsPerPx setting evertime I switch from my laptop to an external monitor. What can I do to avoid this every single time?

Asked by jessebnd 1 mhí ó shin

Last reply by jessebnd 1 mhí ó shin

Unable to show File Picker (continued) and my solution

I had the same problem as, for example, this: https://support.mozilla.org/en-US/questions/1375244 firefox (on linux) was unable to open a file browser to the local fi… (tuilleadh eolais)

I had the same problem as, for example, this:

 https://support.mozilla.org/en-US/questions/1375244

firefox (on linux) was unable to open a file browser to the local filesystem on clicking a website-provided button for file uploads, e.g. here https://video-converter.com/

I have seriously messed up with firefox settings over the years in order to safeguard my privacy, against all the attempts by firefox to infringe it. (Admitteddly, not as much as google chrome, safari and, got forbid, m$ edge). One of these fixes was to link the file/database content-prefs.sqlite (found in my firefox profile dir) to /dev/null. It was this that caused a problem with the file browser not showing. WOW!

Once I deleted said file (linking to /dev/null). Firefox started and all was OK wrt the file brower.

That caused me to create a script to be run before and after firefox launch, searching for all these privacy-infringing databases in my profile dir and erasing them.

The steps to this are: 1) edit /usr/share/applications/org.mozilla.firefox.desktop and replace all Exec=firefox entries with Exec=/usr/local/bin/firefox-custom.sh 2) create a new file /usr/local/bin/firefox-custom.sh with this content

  1. !/bin/bash

CMD="firefox" if [ -x ~/bin/firefox-custom.sh ]; then CMD=~/bin/firefox-custom.sh fi echo "$0 : executing firefox with this command :" echo " ${CMD} $*" ${CMD} $*

3) create a ~/bin/firefox-custom.sh file with this content

  1. !/bin/bash

function eras { local f="$1" echo "erasing file '$f' ..." rm -f "${f}" }

echo "$0 : on starting, erasing various sensitive firefox databases ..."

while IFS= read -r afil && -n "$afil" ; do eras "${afil}" done <<< "$(find ~/.mozilla/firefox -type f -name 'content-prefs.sqlite')"

echo "$0 : now executing firefox ..." firefox $*

echo "$0 : on exiting, erasing various sensitive firefox databases ..." while IFS= read -r afil && -n "$afil" ; do eras "${afil}" done <<< "$(find ~/.mozilla/firefox -type f -name 'content-prefs.sqlite')"

lanuching firefox now either from a desktop file (e.g. via Plank launcher) or from the command line: gio launch /usr/share/applications/org.mozilla.firefox.desktop runs the above script before and after firefox running.

Disclaimer: the above script erases files in your profile directory, use at your own risk. Perpahs make a backup copy of your profile dir before.

Asked by xyz123abcf-u-k 3 mhí ó shin

Last reply by xyz123abcf-u-k 3 mhí ó shin

  • Faoi Ghlas

css code for chrome files no longer works

duplicate of /questions/1498770 thread Recently (around Fx 134) css code for chrome files stopped working. The code I use is set out below. It previously changed the b… (tuilleadh eolais)

duplicate of /questions/1498770 thread

Recently (around Fx 134) css code for chrome files stopped working. The code I use is set out below. It previously changed the background colour to tan ( #dbc3a3 ), the text colour to dark blue ( #000080 ) and the font size to 17 px. The code found at the following location also no longer works for chrome files : https://gist.github.com/MrOtherGuy/c592f6443dd228022966cbe5715ad5c9

@-moz-document url-prefix("about:"), url-prefix("chrome://"), url-prefix("resource://"){

 :root {
     --in-content-page-color: #000080 !important;
     --in-content-text-color: #000080 !important;
     --in-content-page-background: #dbc3a3 !important;
     --in-content-box-background: #e2cfb6 !important;
     --in-content-deemphasized-text: var(--in-content-text-color) !important;
     scrollbar-color: #6495ed #d9d9d9 !important; 
     --background-color-box: var(--in-content-page-background) !important;
     --text-color: var(--in-content-text-color) !important;      
     color:var(--in-content-text-color) !important;
     --background-color-canvas: var(--in-content-page-background) !important;
     --table-row-background-color-alternate: var(--in-content-box-background) !important;    
 menulist > menupopup{ background-color: var(--in-content-page-background) !important; }}}
 

@-moz-document url-prefix("chrome:") {

 html, body, div, h1, p, table, td, tr { background-color: #dbc3a3 !important;
   color: #000080 !important;
   font-size: 17px !important; }
 tr:hover { background-color: #b3d1ff !important; }
 tr.odd:hover { background-color: #b3d1ff !important; }

}

Asked by Terry 3 mhí ó shin

Last reply by markwarner22 3 mhí ó shin

Improvement suggestion: services.settings - UnknownError: IndexedDB RemoteSettingsClient.sys.mjs:555

OS: Linux Mint 22.1 Xia base: Ubuntu 24.04 noble Firefox: mint-001 -. 1.0 / 137.0.2 (64-bit) When starting Firefox with a completely new generated profile, I still get f… (tuilleadh eolais)

OS: Linux Mint 22.1 Xia base: Ubuntu 24.04 noble Firefox: mint-001 -. 1.0 / 137.0.2 (64-bit)

When starting Firefox with a completely new generated profile, I still get following errors in the Browser console tool:

For example (see attachment): services.settings: UnknownError: IndexedDB: main/moz-essential-domain-fallbacks getLastModified() IndexedDB: The operation failed for reasons unrelated to the database itself and not covered by any other error code. Module: RemoteSettingsClient.sys.mjs:555

At this time using Firefox, I haven't configured a Firefox sync-account, to sync settings with the central stored profile on Firefox servers.

Solution: May it is helpful, that if a sync-account isn't configured by a user, these function calls should be suppressed by Firefox, in order to avoid these exception/error messages in Browser console. These error message are just irritating messages, as long as a sync-account isn't configured and activly used.

Asked by Herzi-Linners 2 mhí ó shin

Webassembly.compile() doesn't support SharedArrayBuffer in 138

Hello, as per description I noticed that firefox version 138 requires an ArrayBuffer as the argument of WebAssembly.compile() and doesn't allow anymore (like in 137) a S… (tuilleadh eolais)

Hello,

as per description I noticed that firefox version 138 requires an ArrayBuffer as the argument of WebAssembly.compile() and doesn't allow anymore (like in 137) a SharedArrayBuffer, is this intended or it will be fixed in the future? Follows a simple test case. Kind reagards.


--- index.html --- <title>Example</title> <script> let instance = undefined; async function loadWasm() { try { const response = await fetch('./sum.wasm'); const buffer = await response.arrayBuffer(); const sharedBuffer = new SharedArrayBuffer(buffer.byteLength); const tmpView = new Uint8Array(sharedBuffer); tmpView.set(new Uint8Array(buffer)); const module = await WebAssembly.compile(sharedBuffer); instance = await WebAssembly.instantiate(module); } catch (error) { alert(`failed to compile in wasm: ${error.message}`); } } loadWasm(); function testWasm() { if (instance) alert(`sum 1 + 2 = ${instance.exports.add(1, 2)}`); else alert('invalid instance, failed to compile'); } </script> <button onclick="testWasm()">Press to run wasm function (sum)</button> --- ---

--- sum.wat --- (to convert into .wasm using: wat2wasm sum.wat -o sum.wasm) (module (func $add (param $lhs i32) (param $rhs i32) (result i32) local.get $lhs local.get $rhs i32.add) (export "add" (func $add)) ) --- ---

Asked by Fra 1 mhí ó shin

Last reply by TyDraniu 1 mhí ó shin

css code for chrome files no longer works

Recently (around Fx 134) css code for chrome files stopped working. The code I use is set out below. It previously changed the background colour to tan ( #dbc3a3 ), the… (tuilleadh eolais)

Recently (around Fx 134) css code for chrome files stopped working. The code I use is set out below. It previously changed the background colour to tan ( #dbc3a3 ), the text colour to dark blue ( #000080 ) and the font size to 17 px. The code found at the following location also no longer works for chrome files : https://gist.github.com/MrOtherGuy/c592f6443dd228022966cbe5715ad5c9

@-moz-document url-prefix("about:"), url-prefix("chrome://"), url-prefix("resource://"){

 :root {
     --in-content-page-color: #000080 !important;
     --in-content-text-color: #000080 !important;
     --in-content-page-background: #dbc3a3 !important;
     --in-content-box-background: #e2cfb6 !important;
     --in-content-deemphasized-text: var(--in-content-text-color) !important;
     scrollbar-color: #6495ed #d9d9d9 !important; 
     --background-color-box: var(--in-content-page-background) !important;
     --text-color: var(--in-content-text-color) !important;      
     color:var(--in-content-text-color) !important;
     --background-color-canvas: var(--in-content-page-background) !important;
     --table-row-background-color-alternate: var(--in-content-box-background) !important;    
 menulist > menupopup{ background-color: var(--in-content-page-background) !important; }}}
 

@-moz-document url-prefix("chrome:") {

 html, body, div, h1, p, table, td, tr { background-color: #dbc3a3 !important;
   color: #000080 !important;
   font-size: 17px !important; }
 tr:hover { background-color: #b3d1ff !important; }
 tr.odd:hover { background-color: #b3d1ff !important; }

}

Asked by Terry 3 mhí ó shin

Last reply by Terry 3 mhí ó shin

Tab preview hover delay

I understand that in previous versions, there was a preference in about:config that would let me adjust the delay in ms that I would need to hover over a tab until its ta… (tuilleadh eolais)

I understand that in previous versions, there was a preference in about:config that would let me adjust the delay in ms that I would need to hover over a tab until its tab preview is shown. This preference is supposedly located at browser.tabs.cardPreview.delayMs but when I searched for it in about:config it did not show me any results. Any Google searches do not point me in the right direction either. Does anyone know what I could do to adjust this delay anyways?

Attached is an example of the tab preview I'm talking about.

Asked by harryhallo645 1 mhí ó shin

Double tap to expand browser window no longer working

Hello, Until recently, I was able to double tap the browser bar and have the window expand to fill the screen just short of "full screen" mode so I could still see the m… (tuilleadh eolais)

Hello, Until recently, I was able to double tap the browser bar and have the window expand to fill the screen just short of "full screen" mode so I could still see the menu/task bar. I remember I did need to adjust settings for this somewhere but can no longer figure it out now that it is not functioning to this spec any more.

I did check about:config to see if "apz.allow_double_tap_zooming" was set to TRUE and it is, by following this suggestion below:

https://support.mozilla.org/en-US/questions/1317872

Asked by raspberryrose 1 mhí ó shin