Showing questions tagged: Show all questions
  • Solved

I added extensions that don't appear on any toolbar or in the "Customize" option - how do I get them onto the screen?

I just added "TextArea" to my extensions & it only can be selected by clicking on the picture puzzle icon at the right edge of the address/search bar for a dropdown b… (read more)

I just added "TextArea" to my extensions & it only can be selected by clicking on the picture puzzle icon at the right edge of the address/search bar for a dropdown box of extensions. I would like to display it and a number of others now only on the dropdown on visible toolbars, but can't move them there. When I select "Customize," it shows some basic icons not being displayed, but only the basics and does not include extensions I've added recently. I used to keep icons in the All-in-One Sidebar on my left margin, the Vertical Toolbar on my right margin & the bottom Status bar in pre-version 57 FF and don't want the extra hassle of having to use the dropdown for commonly used extensions. How do I get these icons moved into an existing visual space on my browser? I have 3 36" HDMI screens & plenty of real estate to play with, but no way to use it in FF for new extensions. Do I have to continue to use alternatives like WaterFox Classic & Pale Moon?

Asked by Blue Sun 4 months ago

Answered by cor-el 4 months ago

  • Solved

Firefox flags MP4 file as malware

Hi, Is there any reason firefox would flag an mp4 file legitimately? The file extension and file type are absolutely mp4. There seem to be no mp4 related zero days… (read more)

Hi,

Is there any reason firefox would flag an mp4 file legitimately?

  • The file extension and file type are absolutely mp4.
  • There seem to be no mp4 related zero days.

Does Firefox perhaps just treat all downloads from suspicious domains as malware? Is there a zero day I missed? Is this based on some missing metadata on the file or something?

Thanks for any advice you can give here, I'm scared.

Asked by jordanfilipovski 4 months ago

Answered by cor-el 4 months ago

  • Solved

PASTE Option

What Happened To The PASTE Option, When You Are Composing A New Email In Outlook  ? If You Copy Something, Then Right Click I… (read more)

What Happened To The PASTE Option, When You Are Composing A New Email In Outlook  ?

If You Copy Something, Then Right Click In The Message Section Of The Email, You Do Not Get The Drop Down Menu With PASTE As An Option.

You Only Get The PASTE Option When You Right Click Into The SUBJECT Line.

Asked by j3rowell 5 months ago

Answered by sugarmarc 4 months ago

  • Solved

Compact mode: bookmark spacing/padding in Firefox 112.0 on Windows 10 - (since version 89?)

Firefox 112.0 running on Windows 10 64-bit laptop with a small (pixel geometry) display screen has unnecessarily large padding (white space) around each bookmark as I nav… (read more)

Firefox 112.0 running on Windows 10 64-bit laptop with a small (pixel geometry) display screen has unnecessarily large padding (white space) around each bookmark as I navigate bookmarks on the bookmark bar.

I believe this was a change instituted around version 89 (in a nutshell, I could see more - twice as many? - bookmarks listed within a bookmark folder with version 88/before. The vertical whitespace between bookmarks within a folder is excessive and makes it much more necessary to scroll within a (long) list of bookmarks in a folder when looking for one.

There was a procedure posted in the discussion below on how to set and enable "compact density".

Bookmark Padding in New Firefox Versions 2 https://support.mozilla.org/en-US/questions/1369996

The procedure below was attempted - browser.compactmode.show enabled, browser restarted, however, I cannot fin "Customize Toolbar" and "compact".

"go to - about:config search - "browser.compactmode.show" - change to TRUE , then close that window go to - Customize Toolbar at the bottom of that page, there a box called Density. Click that, you'll see "compact (not supported)" Apparently, it IS supported because I chose that. (it looked like it ignored my choice) After I closed Customize Toolbar, the bookmarks were compact spaced again. Exactly how I need them."

Is this fixable/solvable?

Asked by wb0gaz 4 months ago

Answered by cor-el 4 months ago

  • Solved

Firefox using FIDO2 Security Keys

Firefox seems to have a problem on Linux using USB Security Keys. I have two Yubico Security Keys which I use for 2FA. The problem seems to be that Firefox cannot communi… (read more)

Firefox seems to have a problem on Linux using USB Security Keys. I have two Yubico Security Keys which I use for 2FA. The problem seems to be that Firefox cannot communicate with the USB port, as it doesn't make any difference whether the USB Security Key is plugged in or not, the error returned is always the same and the Security Key does not light up.

I believe Firefox's WebAuth code must be fine, as it works on Windows, which is why I think it's some kind of permissions problem. Chrome works perfectly with the Security Keys on my computer.

I've used a number of sites (I've listed a couple below) where you can test your Security Key with Firefox on KDE Neon and the error is always "UnknownError: The operation failed for an unknown transient reason":

https://www.token2.com/tools/fido2-test/ https://demo.yubico.com/webauthn-technical/registration

I cannot log into Bugzilla with GitHub as my GitHub login uses a Security Key as the second factor.

Asked by dave353 4 months ago

Answered by cor-el 4 months ago

  • Solved

Overflow Menu Is Broken

I'm using Firefox 112 on Windows 10. The toolbar contains icons for several extensions that I don't want to see. I click on the >> menu and then Customize Toolbar. … (read more)

I'm using Firefox 112 on Windows 10. The toolbar contains icons for several extensions that I don't want to see. I click on the >> menu and then Customize Toolbar. That opens the Overflow Menu. It says, "Drag and drop items here to keep them within reach but out of your toolbar." I try to drag one of those extension icons onto the Overflow Menu. It won't go. The dragged icon picks up a circle with a line through it, indicating that this is not allowed or not working.

How can I use the Overflow Menu as advertised, to remove unwanted extension icons from the toolbar? Or is there a good workaround?

Asked by raywood 4 months ago

Answered by TyDraniu 4 months ago

  • Solved

How to Hide the Mute Tab Button?

I've tried following both methods for dissabling the mute button on tabs, it's a slight annoyance, since it's easy to accidentally mute a tab when it's pinned. Specifica… (read more)

I've tried following both methods for dissabling the mute button on tabs, it's a slight annoyance, since it's easy to accidentally mute a tab when it's pinned.

Specifically, the first method I've tried changing the setting in about:config called "browser.tabs.showAudioPlayingIcon" from true to false, which was from 7 years ago it seems, which had no effect.

The second method was by making a new rule in a "userChrome.css" file in a new folder called "chrome" with that exact naming, case sensitive. The code in that file is as follows:

/* Hide the mute/unmute button */
.tab-icon-overlay:not([pinned], [sharing], [crashed]):is([soundplaying], [muted]) {
    display: none !important;
}
/* Keep site icon visible on hover */
.tabbrowser-tab:hover .tab-icon-stack:not([pinned], [sharing], [crashed]):is([soundplaying], [muted]) > :not(.tab-icon-overlay), 
     /* for site icon with Compact density */
:root[uidensity="compact"] .tab-icon-stack:not([pinned], [sharing], [crashed]):is([soundplaying], [muted]) > :not(.tab-icon-overlay) {
    opacity: 1 !important; /* overrides full transparency with full opacity */
}

If there's an updated version of the code that's meant to have that effect in modern firefox, then please let me know, or if there's some other new way of removing the mute button on tabs. Thanks.

Asked by Tclarke02 5 months ago

Answered by jscher2000 - Support Volunteer 5 months ago

  • Solved

Extremely high Cpu usage after firefox update

Hello, I hope someone can help me. Ever since I updated firefox, my cpu is almost at 100%. With only 2 or 3 tabs open. I updated from version 106.0.2 to 112.0.2. Before … (read more)

Hello, I hope someone can help me.

Ever since I updated firefox, my cpu is almost at 100%. With only 2 or 3 tabs open. I updated from version 106.0.2 to 112.0.2. Before this update, I could have several tabs open, up to 10 and the computer would run fine. Now with 3 tabs open, it gets really slow. And I can hear my desktop suffering (the fans go to full speed). When checking the task manager, firefox is taking all the memory and the cpu usage is almost at 100%. I have to keep restarting firefox.

The conditions are the same. The only thing that changes was updating firefox. I already searched for ways to reduce the firefox cpu usage, but nothing changed.

Is there a way to fix this? Or how can I go back to an older version of firefox? Because I'm afraid my computer will die from simply opening 3 tabs.

Thank you in advance.

Asked by Dark_mustard 4 months ago

Answered by cor-el 4 months ago

  • Solved

Extension Icons not displayed on Toolbar

Hello, Recently I rebuilt my Widows 11 laptop, which meant that I needed to install Firefox again. I did this and signed into to sync all my add-ons again. The add-ons i… (read more)

Hello,

Recently I rebuilt my Widows 11 laptop, which meant that I needed to install Firefox again. I did this and signed into to sync all my add-ons again. The add-ons installed without issue, however the icons for them are not displayed on the tool bar. I can access them using the jigsaw icon, but this is is less inconvenient that accessing the add-on directly.

I then reset Firefox in case it was a glitch and signed in again to allow the sync to reinstall the add-ons. This time only the Privacy Badger icon made it onto the toolbar. Again I can access the add-ons using the jigsaw icon.

I have tried to add the add-ons to the Customise Toolbar setting, but they do not show up in the list of things that can be added.

Firefox version: 112.0.1 (64 bit)

I have attached images to show what is happening. Is there anyway I can force the add-on icons onto the toolbar to make them more accessible?

Thank you

Asked by russell.seymour 5 months ago

Answered by TyDraniu 5 months ago

  • Solved

Disable Firefox Spell Check Underline

Is there a way to permanently disable red underlining from Firefox spell check? This has only started occurring since an update to Firefox 110 (now on 112), but there se… (read more)

Is there a way to permanently disable red underlining from Firefox spell check? This has only started occurring since an update to Firefox 110 (now on 112), but there seems to be no way to make it go away. I've unchecked the spelling box in preferences, and killed off things in about:config:

extensions.spellcheck.inline.max-misspellings 0 layout.spellcheckDefault 0 services.sync.prefs.sync.layout.spellcheckDefault false services.sync.prefs.sync.spellchecker.dictionary false

I'm using Mac Monterey, and have the global spell check turned off for that. This seems to be a problem specific to Firefox, as it doesn't happen in Chrome (spellcheck off) or Safari. I'd like to remove this entirely, since it's distracting to have it second guessing me whenever I'm typing. The main reason I use Firefox is that it gives me the ability to control many things, particularly in combination with UBlock, but I'm unable to make any progress in removing this persistent work disruption.

Asked by bhendrix2 5 months ago

Answered by cor-el 5 months ago

  • Solved

Cloudflare hosted site complains about Firefox but works with Chrome

This site, Costco Instacart, worked perfectly with Firefox as recently as April 15, 2023 but today fails (see attached image): https://sameday.costco.com/store/costco/sto… (read more)

This site, Costco Instacart, worked perfectly with Firefox as recently as April 15, 2023 but today fails (see attached image): https://sameday.costco.com/store/costco/storefront?zipcode=11021

Cloudflare believes it is protecting itself from online attacks when accessed by Firefox. The same site worked perfectly today, on the same computer, using Google Chrome.

Cloudflare is a major CDN and many important commercial sites, like Costco Instacart, have their content delivered by Cloudflare so this is a major issue with Firefox. For the moment there is a work-around, use Chrome instead, but it would be better to have Firefox address issues with Cloudflare.

Asked by em2jacks 4 months ago

Answered by em2jacks 4 months ago

  • Solved

How do I install/update/trust a new ZOOM certificate with Error code 10006?

Zoom.us renewed their DigiCert Global G2 TLS RSA SHA256 2020 CA1 certificate on 03/31/2023 and I now get a persistent error message (Error Code 6: ... certificate is not … (read more)

Zoom.us renewed their DigiCert Global G2 TLS RSA SHA256 2020 CA1 certificate on 03/31/2023 and I now get a persistent error message (Error Code 6: ... certificate is not trusted.

Since then Zoom has not worked for me and their Artificial Intelligence says to open my browser and check my internet connection, time settings, updates, reinstall everything etc. - the usual responses ...

Zoom responds with "Error code: 6" and/or "Error code: 100068000"

 but do not stipulate whether these are Zoom Error codes or certificate error codes.

The Artificial Intelligence insinuation is that FireFox is not trusting this certificate.

Is this something FireFox can help me with? Perhaps, how to make this certificate "trusted"?

Thanks, I hope, Dave Henry (Dan is my Facebook pseudonym) ( DavidJHenry@telus.net )

Asked by Dan Myxyezpitilik 5 months ago

Answered by Dan Myxyezpitilik 5 months ago

  • Solved

Import passwords from CSV or Microsoft Edge (Linux)

I'm trying to move to Firefox from Microsoft Edge on Linux. When I go to import data from another browser Edge is not an option. I have a CSV file that I exported from … (read more)

I'm trying to move to Firefox from Microsoft Edge on Linux. When I go to import data from another browser Edge is not an option. I have a CSV file that I exported from Edge. How can I import this CSV file? I found something on reddit that said to change security.allow_eval_in_parent_process to true, but that no longer works. How can I get my passwords imported without having to install another browser and import to that and then import to firefox?

Asked by zeos386sx 5 months ago

Answered by cor-el 5 months ago

  • Solved

"NetworkError when attempting to fetch resource." on many websites

in the last day firefox has all but stopped working on most websites. i can go to them and they start to load, but then they eventually break halfway through and either e… (read more)

in the last day firefox has all but stopped working on most websites. i can go to them and they start to load, but then they eventually break halfway through and either end up loading forever or produce an error. if i look at the console i see "Source map error: Error: NetworkError when attempting to fetch resource." this happens on twitter.com and raidbots.com to name two off the top of my head.

i did a complete refresh and even completely uninstalled and reinstalled the browser - it started working for a bit and then broke again. i have no plugins or extensions enabled currently (i have dashlane but this happens with it enabled or disabled). it's making the browser unusable. ive scanned my computer for malware and cant find anything either. i don't have this problem in any other browsers so not sure what else to try.

Asked by fnnmyr 5 months ago

Answered by cor-el 4 months ago

  • Solved

Reorder extensions

I want to re-order the add-ons / extensions in the toolbar shared with the search bar. Customize toolbar only has functions/icons related to the operation of Firefox. I w… (read more)

I want to re-order the add-ons / extensions in the toolbar shared with the search bar. Customize toolbar only has functions/icons related to the operation of Firefox. I want to customize the extensions toolbar, but how?

In the add-ons page, I can remove, disable, or enable extensions, but I cannot change the order of them.

As an example, there is an add-on for my Firefox account that is leftmost in the bar of extension icons. I would like to move it all the way to the right. Again, how would I do that?

Thanks for your help.

Asked by alizabgold 4 months ago

Answered by AliceWyman 4 months ago

  • Solved

Scroll bars not showing up on some sites since 112 update

I'm using Firefox in Ubuntu 22.04.2. I recently update to 112.0, then 112.0.1 With both versions, the scroll bar is not available on some sites which used to work in pre… (read more)

I'm using Firefox in Ubuntu 22.04.2. I recently update to 112.0, then 112.0.1

With both versions, the scroll bar is not available on some sites which used to work in previous versions. Items which are outside the initial viewing area are not visible.

Is anyone else affected by this issue?

Asked by gomgomfirefox 5 months ago

Answered by cor-el 5 months ago

  • Solved

forced safe search on google search, only on firefox.

Recently I have had safe search forced on me, only on firefox, if I turn it off it is on again as soon as I search, it is not locked, I am in my 50's and I use my home wi… (read more)

Recently I have had safe search forced on me, only on firefox, if I turn it off it is on again as soon as I search, it is not locked, I am in my 50's and I use my home wifi, home pc, as Inalways have. Any ideas please ?

Asked by sparrow08 4 months ago

Answered by sparrow08 4 months ago