Outdated version of Firefox listed at >Installed Apps<

I always had one version of Firefox installed. I regularly update the software via Help >> About Still, after every update, I am getting multiple versions of Firefo… (читать ещё)

I always had one version of Firefox installed. I regularly update the software via Help >> About Still, after every update, I am getting multiple versions of Firefox listed at [Settings/Installed Apps] and [Control Panel/Uninstall or remove apps] on my Win11 23H2 22631.3593 (screenshot attached).

In order to get rid of outdated items from the list, I need to reinstall Firefox completely, but the same thing is happening with every update of Firefox.

Is there a way to resolve this and why is this happening?

Задан Jed 2 дня назад

Последний ответ от Jed 1 день назад

Firefox showing wrong response time in dev console

Hello! I've been noticing for several versions of Firefox that the response times reported in the “Network” tab of the developer console are wrong. In Chrome it shows the… (читать ещё)

Hello! I've been noticing for several versions of Firefox that the response times reported in the “Network” tab of the developer console are wrong. In Chrome it shows the true value, which are a few ms, while in Firefox they show that it takes several seconds!!!! I attach the images of the problem.

Is it a bug, or a configuration problem itself? Thanks in advance

Задан genarocamele 1 день назад

FireFox changes

When I start FireFox most times the browser comes up then stops and restarts with a pink color on the web address line. I have tried making changes in settings but I can … (читать ещё)

When I start FireFox most times the browser comes up then stops and restarts with a pink color on the web address line. I have tried making changes in settings but I can not find a setting for this. If I restart Firefox right after this happens, I cn search or browse without the Pink address line. Why is this happening. It would be nice if FireFox technicians would respond to help questions instead of sending questions to a forem...

Задан soles329 1 день назад

Too many spawn child processess and browser freeze

Firefox spawn too many child processess, with cause the browser to freeze. Proposed solution: Reduce to absolute minimum the spawn child processess. The value should be… (читать ещё)

Firefox spawn too many child processess, with cause the browser to freeze.

Proposed solution:

Reduce to absolute minimum the spawn child processess. The value should be set according to the device performance and additionally show allow the user to set manually the limits.

Example: 1 (maximal 3) child process per tab/window

Задан Mcgiwer 1 неделю назад

Последний ответ от Mcgiwer 1 день назад

Tab crashes

Please help me to understand why I keep getting the 'Gah! Your tab just crashed' message. This only started a couple of weeks ago, but is extremely annoying and makes me… (читать ещё)

Please help me to understand why I keep getting the 'Gah! Your tab just crashed' message. This only started a couple of weeks ago, but is extremely annoying and makes me doubt the integrity of Firefox. The problem can be circumvented (at least for a while) by closing and re-opening Firefox, but I'd prefer not to have to keep doing this.

Задан Shenn_Ghaelgeyr 2 дня назад

Последний ответ от Shenn_Ghaelgeyr 1 день назад

How to restore firefox settings and bookmarks after Windows corrupted and deleted user profile?

I restarted my Windows 11 laptop and got error message about user profile. Restarted again and looks like it was corrupted so deleted my my user profile and Firefox confi… (читать ещё)

I restarted my Windows 11 laptop and got error message about user profile. Restarted again and looks like it was corrupted so deleted my my user profile and Firefox config and bookmarks are gone!

Still have all the files just a new user profile and the old one is gone?

Any help how to get Firefox bookmarks back would be much appreciated

Задан benbinary 1 день назад

Issue with tab text going blurry when switching to a different window

Hi, So I got a new ultra-ultra wide 32:9 monitor and I noticed when I have firefox maximized on my new monitor and switch focus to a different window all of the text on … (читать ещё)

Hi,

So I got a new ultra-ultra wide 32:9 monitor and I noticed when I have firefox maximized on my new monitor and switch focus to a different window all of the text on tabs on the full screened firefox would go very blurry. If I had the same firefox windows full sized on my 16:9 secondary monitor this didn't happen. I then tried having the windows not maximized on the new monitor and it did not do this behavior when it was occupying what I would say was 1/3 of the screen width but if I stretched the screen too far it would again go back to this blurry behavior. So it seems like the text for the tabs behaves differently after the firefox window is stretched to a certain width. On the non-stretched firefox windows the letters simply get darker which I find to look better than the blurring. I added a screenshot that shows the differences I am seeing, the firefox window on the bottom screen shows the blurring, if you look at what would be the left middle side of the screenshot, while the top and bottom middle firefox windows show what it seems like it should look like.

Thanks, Dan

Задан dlb134 1 день назад

Toggling visibility of the URL bar and tabs via the bookmarks toolbar visibility setting [SOLVED]

tl:dr Here's the CSS to put in userChrome.css file. This is the "hides everything" option. See toward the end of this post for others. navigator-toolbox:has(#PersonalT… (читать ещё)

tl:dr Here's the CSS to put in userChrome.css file. This is the "hides everything" option. See toward the end of this post for others.

  1. navigator-toolbox:has(#PersonalToolbar[collapsed="true"]) {
 visibility: collapse;

}


+++

I was looking for a way to hide the nav bar and ran across this older forum topic (https://support.mozilla.org/en-US/questions/1288181).

The solution shown here seems to be non-functional these days (early 2024), but it gets us in the right direction, so below is the code for us to look at.

  1. main-window[chromehidden*="toolbar"] #nav-bar {
 visibility: collapse;

}

This is CSS, meant to be copied into a text document, itself placed in a folder called "chrome" that you'll need to create in your browser's active profile folder. Per step 6 in the instructions (https://www.userchrome.org/how-create-userchrome-css.html) linked by @jscher2000 in the above-linked forum topic, you'll also need to set toolkit.legacyUserProfileCustomizations.stylesheets to "true" in about:config. If you don't know what about:config is, this is a good example to get started, but I'm not going to explain it here.

This CSS code selects the object with ID #main-window, with an HTML attribute "chromehidden" equal to "toolbar", and sets its CSS property "visibility" to "collapse". Apparently Mozila have changed the way they implement toolbar hiding, as this no longer works — this chromehidden attribute is nowhere to be found in the HTML that drives the Firefox interface, not sure if that's the place to look for it, but I think so. Anyway, we need to dig around in this interface HTML ourselves to see what changes when hiding the bookmarks toolbar, so we can adapt a new method to what's going on in the browser now.

To do so, we open a window within a window (chrome://browser/content/browser.xhtml) and run the inspector via Web Developer Tools. Comparing the HTML we see here with the bookmarks toolbar in each state (I used BBEdit to compare the texts), we see that the object with ID #PersonalToolbar experiences a change in its "collapsed" attribute when we hide/show the bookmarks toolbar. So in our CSS code, we shift our strategy to update the "collapse" CSS property for #navigator-toolbox whenever it contains a #PersonalToolbar object with its own "collapsed" attribute set to "true", which occurs whenever we hide the bookmarks toolbar. Somewhat surprisingly, this approach of updating the CSS property seems to auto-reset on its own when the "collapsed" attribute is set back to "false", which occurs when we show the bookmarks toolbar again. In other words, it simply toggles with the visibility setting of the bookmarks toolbar, and we don't have to write any further code.

If you're interested in hiding some other UI element when hiding the bookmarks toolbar, you can modify this code to do stuff like that (but to go beyond the below examples you'll need to suss out the object IDs, CSS properties, and HTML attributes — and maybe more, depending on what you're trying to do — on your own).

But for convenience, here's an example that hides just the tabs:

  1. navigator-toolbox:has(#PersonalToolbar[collapsed="true"]) #titlebar {
 visibility: collapse;

}


Here's one that hides just the URL bar:

  1. navigator-toolbox:has(#PersonalToolbar[collapsed="true"]) #nav-bar {
 visibility: collapse;

}


Since those are the only other two things in the #navigator-toolbox to be hidden, I suppose that means we now have all options on the table (at least the way I have the browser set up). Enjoy!

Задан firefox.anon8f8 2 дня назад

Последний ответ от firefox.anon8f8 1 день назад

PR_END_OF_ERROR Firefox ver 125 on Win 10

I have been using Firefox as my preferred browser on Windows 10 Home and Pro systems for a considerable time and have recommended it to many Windows and Android users. … (читать ещё)

I have been using Firefox as my preferred browser on Windows 10 Home and Pro systems for a considerable time and have recommended it to many Windows and Android users.

Windows 10 Home ver 10.0.19045 has recently been unable to access many well-known websites due to

Secure Connection Failed - An error occurred during a connection to <website's https url> PR_END_OF_FILE_ERROR.

There are multiple reports of this problem from 2023 up into 2024 in Mozilla support and across the web, but no solutions. Curiously all of the problem reports mention Firefox not any other browser. Suggestions to try multiple fixes, but none have resolved the problem.

One posting on Mozilla Support marked RESOLVED says the problem mysteriously went away for that user. Lots of people still seem to be having this problem, so how about a fix.

Sent from Brave browser,

Задан Del 1 день назад

Downloading files and ad-ons FAIL

I cannot download any files or any adons through firefox. I have tried every single troubleshooting method in the "What to do if you can't download or save files" article… (читать ещё)

I cannot download any files or any adons through firefox. I have tried every single troubleshooting method in the "What to do if you can't download or save files" article I have restarted my computer, I have refreshed firefox, I have reinstalled firefox TWICE, I have turned off my firewall and tried downloading a file, I have changed the wifi im connected to, I can download files on internet explorer just fine, I have tried a new profile, I have scanned my device for viruses (theres none), I have no idea what the troubleshooting mode is supposed to do because I cannot download files in that either. I currently have no ad-ons installed because of the refresh I dont know what else to do and why is my firefox doing this, it started yesterday.

Задан luca 1 день назад

can't login to Fastmail

It was working fine and now the past few days I can no longer login to my Fastmail.com account other than from my Windows 7 pc So no one including Firefox can email me … (читать ещё)

It was working fine and now the past few days I can no longer login to my Fastmail.com account other than from my Windows 7 pc

So no one including Firefox can email me

Задан kimahoney 1 день назад

Address Bar Search Suggestions

Concerning "Dismissed Suggestions"> Restore Suggestions. The "Restore" button (circled in image) is greyed out & will not do anything when clicked. This behaves … (читать ещё)

Concerning "Dismissed Suggestions"> Restore Suggestions. The "Restore" button (circled in image) is greyed out & will not do anything when clicked. This behaves same in normal as well as private browsing windows. Thank you

Задан Tom_798 2 дня назад

I can no longer connect to X ray images using your browser. The links are in EPIC. The X ray system is eUnity. If I can no longer connect I will have to switch browsers.

I can no longer connect to X ray images using your browser. The links are in EPIC. The X ray system is eUnity. If I can no longer connect I will have to switch browser… (читать ещё)

I can no longer connect to X ray images using your browser. The links are in EPIC. The X ray system is eUnity. If I can no longer connect I will have to switch browsers.

Your browser says: Secure Connection Failed

An error occurred during a connection to webpacs.cei.med.umich.edu.

   The page you are trying to view cannot be shown because the authenticity of the received data could not be verified.
   Please contact the website owners to inform them of this problem.

Задан mhershen 2 дня назад

Since upgrade to v.126 (from v.125), can no longer access "accounts feature" after login to bank website

Been using Firefox and predessors for 30 years. The problem: 1. I login to my Credit Union website "https://www.missionfed.com. 2. I AM able to get through the login and … (читать ещё)

Been using Firefox and predessors for 30 years. The problem: 1. I login to my Credit Union website "https://www.missionfed.com. 2. I AM able to get through the login and verification process, to the page where my accounts are shown. 3. Click on my checking account, and the icon rolls and rolls, and never gets past this point. 4. Access in this same manner has ALWAYS worked in the past. 5. I disabled all extensions, etc. There was only one anyway. Didn't help. 6. I ran troubleshooting / safe mode. Didn't help. 7. Cleared the cache, etc. Didn't help 7. I called the bank. The moment I mentioned Firefox, THEY SAID, IT'S A NEW PROBLEM WITH FIREFOX, WE'RE TELLING EVERYONE TO USE EDGE OR CHROME INSTEAD. That can't be good? 8. The bank said v.125 works fine and that v.126 is the problem. Any ideas?

Задан eganders 2 дня назад

Error 500 internal server

I am trying to email a link from chatgpt to my yahoo email account. When I try to open the link I receive the error 500 internal server message. I have emailed links fro… (читать ещё)

I am trying to email a link from chatgpt to my yahoo email account. When I try to open the link I receive the error 500 internal server message. I have emailed links from chatgpt many times before with no problem. Can you advise.

Thank you Barbara Krausher

Задан bkrausher 2 дня назад

Cannot wipe/reset addon data on server / sync all addons

I am trying to sync my addons to another computer. Apparently the addons I have on the primary computer are not synced to the server. The sync-log says "[addon] not synca… (читать ещё)

I am trying to sync my addons to another computer. Apparently the addons I have on the primary computer are not synced to the server. The sync-log says "[addon] not syncable: is foreign install." The About Sync addon shows that data for two addons are on the server, one of them About Sync, while I have a lot more on my primary computer. I may have synced the addons from the secondary computer first, so that might explain why the server knows only about two addons.

So I am trying to wipe the addon data from the server and sync the addons from my primary computer. I have signed out all but the primary computer from the Mozilla account. I have tried signing in and out of the Mozilla account and changing the password to wipe the server data, but that does not seem to work.

Wiping the addon data via About Sync > addons > Engine Actions > Wipe addons does not seem to work, either. After syncing About Sync shows that there are two addons on the server again.

What else can I try to wipe the addon data on the server or to sync my addons from the primary to the secondary computer?

Задан dpdan 2 дня назад