顯示下列標籤的問題:

Program Menu

How do I delete the "Recent bookmarks" list in the program menu, under bookmarks? To me it's completely unnecessary, and have no meaning.

封存 2 180

how to save telephone permissions for G Voice page https://voice.google.com/u/0/calls

W 11 May, 2025 update really made my computer unable to go online in any way and I had to restore. But FFox updates to have made it impossible to communicate. My phone ha… (閱讀更多)

W 11 May, 2025 update really made my computer unable to go online in any way and I had to restore. But FFox updates to have made it impossible to communicate. My phone has trouble s too. So, how do we make stick telephone permissions for, say: G Voice page https://voice.google.com/u/0/calls now? Thank you

已解決 封存 1 171

How to stop firefox windows 10 to open the left Bookmark Sidebar automaticaly

windows 10 is up to date firefox is up to date (137.02 64 bit) dark theme there is no bookmark sidebar button at the right of the address bar I am running firefox in 5 wi… (閱讀更多)

windows 10 is up to date firefox is up to date (137.02 64 bit) dark theme

there is no bookmark sidebar button at the right of the address bar

I am running firefox in 5 windows with at least 7 tabs each every time i exit, reopen of update it i have more that 35 Bookmark LEFT Side Bars to close IF i have the patience to close all of them WHICH NEVER HAPPENS... (this is happening since too long, I am pissed off...)

I searched, tried a couple of "solutions" to no avail

封存 5 162

youtube stream - i start ... 20 sek. stream stops ... 30 - 40 sek maybe longer. my trick, i learned : change resolution - stream starts immediately. IT IS SO BORING ... i´m done

Since the last update, I believe, because this error occurs constantly and with EVERY video. This is often, not always, the case immediately after updating FF. Now it was… (閱讀更多)

Since the last update, I believe, because this error occurs constantly and with EVERY video. This is often, not always, the case immediately after updating FF. Now it was fine for a while, but now it's so bad that I'm having trouble watching YT videos properly. Reason: Browser open, logged in to YT. I click on a video to play - video opens, plays maybe 10 to 20 seconds, then playback stops spinning top, I also found out during the last glitch after update that if I switch the resolution briefly, higher or lower doesn't matter - important is to leave the current resolution and switch to another one. And oh wonder - immediately, instantly with the change, the video starts playing. If I wait for this - without doing anything myself, it sometimes takes 30 - 40 seconds for the video to start ... sometimes it just "hangs" ... This is extremely annoying - if it doesn't work, I have to switch browsers... What is also extremely annoying is that it occurs almost regularly after an update ... until the next one possibly, for unknown reasons, does not fix the error, but sometimes mitigates it. Now, however, the disruption/interruption is so massive and totally annoying that I'm thinking of switching. I'm just tired of it ...

Since the last update, I believe, because this error occurs constantly and with EVERY video. This is often, not always, the case immediately after updating FF. it was fine for a while, but now it's so bad that I'm having trouble watching YT videos properly. Reason: Browser open, logged in to YT. I click on a video to play - video opens, plays maybe 10 to 20 seconds, then playback stops spinning gyro, I also found out during the last glitch after update that if I switch the resolution briefly, higher or lower doesn't matter - important is to leave the current resolution and switch to another one. And oh wonder - immediately, instantly with the change, the video starts playing (for a while at least maybe 5 Minutes maybe 30 Sek... i´m done with FireFox ...) If I wait for this - without doing anything myself, it sometimes takes 30 - 40 seconds for the video to start ... sometimes it just “hangs” ... This is extremely annoying - if it doesn't work, I have to switch browsers... What also bothers me extremely is that it occurs almost regularly after an update ... until the next one possibly, for unknown reasons, does not fix the error, but sometimes mitigates it. Now, however, the disruption/interruption is so massive and totally annoying that I'm thinking of changing. I'm just tired of it ... Please fix it or shoot me ... any suggestions ??

已解決 封存 2 162

Missing menu bar when right-clicking on a window thumbnail on the taskbar

When you right-click on a window thumbnail, a menu should appear, but instead the window thumbnail just disappears. The screenshots show 1) a Firefox mini-window 2) a min… (閱讀更多)

When you right-click on a window thumbnail, a menu should appear, but instead the window thumbnail just disappears. The screenshots show 1) a Firefox mini-window 2) a mini-window that just disappeared when you right-click 3) a mini-window of any other program 4) the menu that appeared is as it should be Otherwise the browser works absolutely fine for a long time. But this problem causes a lot of inconvenience because I have 2 monitors.

已解決 封存 1 162

Container won't Remove

Firefox Containers > Manage Containers > Remove [container]; message (modal, I think it's called?) pops up to say I have a tab open and do I want to proceed? I to u… (閱讀更多)

Firefox Containers > Manage Containers > Remove [container]; message (modal, I think it's called?) pops up to say I have a tab open and do I want to proceed? I to up to the container icon upper-right, search for [container], click to open that page, then CTRL+W to close it. Then I try to Remove [container] again; fails. That container is still in the list, and still popping up a note that a tab is open in that container (no, I closed it).

I really like the Containers feature, AND it could use some improvement.

Unrelated, I'm open to help with proofreading; feel free to ask, or point me to a git where I could contribute. I'm not happy about the apparent erosion of privacy in Firefox, but it sure beats Google, Microsoft, Apple, etc.

封存 1 153

Opening the Firefox window

When I first open Firefox from the icon in my taskbar the opening window says the following: 'Unable to connect Firefox can’t establish a connection to the server at 0.0.… (閱讀更多)

When I first open Firefox from the icon in my taskbar the opening window says the following:

'Unable to connect Firefox can’t establish a connection to the server at 0.0.0.4. The site could be temporarily unavailable or too busy. Try again in a few moments. If you are unable to load any pages, check your computer’s network connection. If your computer or network is protected by a firewall or proxy, make sure that Firefox is permitted to access the web.'

However this is only the first window, after that I can open a new tab in the same window without any problems.

I have uninstalled and reinstalled Firefox without avail. Can anyone help please?

封存 1 144

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 Sh… (閱讀更多)

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> <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)) ) --- ---

封存 1 135

Extensions Not Working

I just downloaded firefox for the first time because Chrome disabled uBlocker. I have added uBlocker and 1Password as extensions, but neither of them are working on any w… (閱讀更多)

I just downloaded firefox for the first time because Chrome disabled uBlocker. I have added uBlocker and 1Password as extensions, but neither of them are working on any webpage at all. I also can't pin extentions. I have restarted firefox and my computer several times. What do I do?

封存 1 135

accidentally uninstalled firefox

I accidentally uninstalled firefox and need to recover passwords and bookmarks. Can this be done? I run an old dell latitude with Windows 10 and was trying to cleanup app… (閱讀更多)

I accidentally uninstalled firefox and need to recover passwords and bookmarks. Can this be done? I run an old dell latitude with Windows 10 and was trying to cleanup apps running in background at startup since it was running very slowly. At one point I saw 2 firefox icons. Uninstalled one and lost everything. Can you help me. Michael Evans

封存 5 135

Can I 'protect' a tab, so that trying FF instanced causes a warning

More frequently than I care to admit, I seem to close FF instances which I don't want to close (such as my connection to Whatsapp). I then miss important replies or quest… (閱讀更多)

More frequently than I care to admit, I seem to close FF instances which I don't want to close (such as my connection to Whatsapp). I then miss important replies or questions. Of course I can reach out to 'History' and try to find the closed Tab or Window... But that takes time.

I'd suggest adding/removing a 'protection' flag to a tab (eg. on right-clicking), so that, on trying to close the tab, or close the window containing the tab, I get a warning...

封存 1 126

Tabs just continuesly crash on Windows 11

Ok for some reason any of my browsers tabs are crashing I just do whatever it is whether i search or watch movie and after some time 'Gah! your tab crashed' and it's pret… (閱讀更多)

Ok for some reason any of my browsers tabs are crashing I just do whatever it is whether i search or watch movie and after some time 'Gah! your tab crashed' and it's pretty annoying, my discord happens to restart it self and I've exhausted literally anything from re-installing, deleting caches folders absolutely anything.

https://crash-stats.mozilla.org/report/index/a84fe228-d9f4-422d-becf-0e2ed0250414 https://crash-stats.mozilla.org/report/index/f44d9f6f-db4a-4596-926d-d08710250414

I've uploaded my latest 2 crashes and hopefully someone can read it and let m know about anything, Thanks in advance!

封存 1 126

webpage on opening browser

i share my computer and when someone else uses the browser they see the last page I used. Emails open and they can see my private emails. how do I stop this without erasi… (閱讀更多)

i share my computer and when someone else uses the browser they see the last page I used. Emails open and they can see my private emails. how do I stop this without erasing history everytime I use it

封存 1 117