Showing questions tagged: Show all questions

Why is Firefox autofilling the address bar with URLS I've never visited?

Why is Firefox autofilling the address bar with URLS I've never visited? There is a question on this from 5 years ago, with lots of suggestions. My problem is that Firefo… (read more)

Why is Firefox autofilling the address bar with URLS I've never visited? There is a question on this from 5 years ago, with lots of suggestions. My problem is that Firefox is autofilling with sites that contain confidential login information.

Asked by troppont Prieš 23 minutes

Why did my firefox profile jump from 120MB to 745MB suddenly?

The increase happened here: /storage/permanent/chrome/idb/3870112724rsegmnoittet-es.files/ 79 files taking 590MB created in 3 minutes, out of nowhere. Why were all these… (read more)

The increase happened here: /storage/permanent/chrome/idb/3870112724rsegmnoittet-es.files/

79 files taking 590MB created in 3 minutes, out of nowhere. Why were all these large files created?

Using Linux Mint, Firefox 125.0.2

Asked by Tony Prieš 1 dieną

Last reply by Tony Prieš 48 minutes

Firewall reports unusal path of updater.exe

Windows 11 Pro, Version 10.0.22631 Build 22631 Firefox, 126.0b8 (64-Bit) Hey, I use a personal firewall. Every unknown program that attempts to access the network trigg… (read more)

Windows 11 Pro, Version 10.0.22631 Build 22631 Firefox, 126.0b8 (64-Bit)

Hey,

I use a personal firewall. Every unknown program that attempts to access the network triggers a popup message requesting permission.

Right after the installation, Firefox.exe initiated a message, stating the following path: "C:\Program Files\Mozilla Firefox\firefox.exe". I granted access.

However, weeks after the installation, the updater.exe asked for permission, stating a very unusual path of itself. The path is "\device\harddiskvolume3\Program Files (x86)\Mozilla Maintenance Service\update\updater.exe".

This seems unusual to me, since apps normally use 'C:\' to refer to harddiskdrive0. It is also suspect, since there are only two drives connected and the Disk Management tool (as an admin) indicates, that there are harddiskdrive0 and harddiskdrive1. There are no hard disk drives 2 or 3.

I also wondering about the fact, that the about firefox screen states, that firefox is up to date - even I did not granted access for the updater.exe in the past. There has never been a firwall rule to grant access for the updater.exe - how did it update in the past?

Does anybody have an idea what is happening?

Best regards, André

Asked by André Prieš 1 valandą

userChrome.css - Help With Customizing Tabs (part 2)

Hi All, I would like the content area of my tabs moved up so that the box is filled with the actual tab color, without the white background, and also the text will be ve… (read more)

Hi All,

I would like the content area of my tabs moved up so that the box is filled with the actual tab color, without the white background, and also the text will be vertically centered. Right now, the text is dropping too close to the bottom of the tab.

Had this looking very nice in FF 88 with the same code, as you can see in the attached images, but it seems to render differently in FF 115 ESR and FF 125.

Below is some code I used to style the tabs, but the problem exists without this code as well.

I've also included some "tabs on bottom" code I'm using as well at the very bottom.

Would sure like to get those Classic Toolbar Buttons working again too (shown in the second image), but that will be a later request :)

Any help is appreciated.

Thanks!

/* Highlight non-selected tabs on mouseover */ .tabbrowser-tab:not([selected]):hover .tab-content {

  background-color: #dbe3eb !important;

}

  1. TabsToolbar {
 -moz-box-ordinal-group: 3 !important;
 padding-top: 0 !important;
 padding-bottom: 0 !important;
 height: 25px !important;
 background-image: url("bkmr_back.gif") !important;
 border-top: 1px solid #afc0d2 !important;
 border-bottom: 1px solid #8698aa !important;

}

/* Background color of selected tab */ .tab-background[selected="true"] {

   background-attachment: none!important;
   background-image: none!important;
   background-color: #eef5fc !important;

}

/* Background color of non-selected tab */ tab-background:not([selected]) {

   color: #000000 !important;
   background-color: #c7d3e0 !important;

}

/* Border color & bold text for selected tab */

  1. TabsToolbar .tabbrowser-tab[selected] {
   font-weight: 700 !important;
   color: #000 !important;
   border-top: 1px solid #8698aa !important;
   border-left: 1px solid #8698aa !important;
   border-right: 1px solid #8698aa !important;

}

/* Border color & normal text for non-selected tab */

  1. TabsToolbar .tabbrowser-tab:not([selected]) {
   font-weight: 600 !important;
   color: #000 !important;
   border-top: 1px solid #afc0d2 !important;
   border-left: 1px solid #afc0d2 !important;
   border-right: 1px solid #afc0d2 !important;

}

/* -------------- TABS ON BOTTOM --------------- */ /* TABS: below nav-bar - updated for 89+ | 108+ | 113+ */

  • |*:root {
 --tab-toolbar-navbar-overlap: 0px !important;
 --tab-min-height: 25px !important; /* adjust */
 --tab-min-width:  80px !important; /* adjust */

}

  1. navigator-toolbox #TabsToolbar {
 position: absolute !important;
 bottom: 0;
 /* height: 27px !important; */
 height: 28px !important;
 width: 100vw !important;

}

/* navigator-toolbox - padding */

  • |*:root:not([chromehidden*="toolbar"]) #navigator-toolbox {
 position: relative !important; /*89+*/
 padding-bottom: calc(var(--tab-min-height) + 1px) !important; /*adjust*/
 background-color: var(--toolbar-bgcolor) !important;

}

/* TABS: HEIGHT */

  1. tabbrowser-tabs,
  2. tabbrowser-arrowscrollbox,
  3. tabbrowser-tabs .tabbrowser-tab {
 min-height: var(--tab-min-height) !important;
 max-height: var(--tab-min-height) !important;

}

.tab-stack {

 height: var(--tab-min-height) !important;

}

  1. TabsToolbar {
 height: var(--tab-min-height) !important;
 margin-bottom: 0px !important;
 /* box-shadow: ThreeDShadow 0 -1px inset, -moz-dialog 0 1px !important; /*optional*/
 /* background-color: var(--toolbar-bgcolor) !important; */
 color: var(--toolbar-color) !important;

}

/* drag space */ .titlebar-spacer[type="pre-tabs"], .titlebar-spacer[type="post-tabs"] {

 width: 40px;

}

/* Override vertical shifts when moving a tab */

  1. navigator-toolbox[movingtab] > #titlebar > #TabsToolbar {
 padding-bottom: unset !important;

}

  1. navigator-toolbox[movingtab] #tabbrowser-tabs {
 padding-bottom: unset !important;
 margin-bottom: unset !important;

}

  1. navigator-toolbox[movingtab] > #nav-bar {
 margin-top: unset !important;

}

/* hide indicators and caption buttons */

  1. TabsToolbar .private-browsing-indicator {display: none !important;}
  2. TabsToolbar .accessibility-indicator {display: none !important;}
  3. TabsToolbar .titlebar-buttonbox-container {display: none !important;}
  4. TabsToolbar #window-controls {display: none !important;}

/* -------------- TABS ON BOTTOM --------------- */

Asked by Slouch Prieš 2 dienas

Last reply by Slouch Prieš 4 valandas

Failed to check for updates

I am running version 125.0.3 (64-bit) on Windows 11, and I can't check for updates and have to manually download each new version after given a popup telling me that the … (read more)

I am running version 125.0.3 (64-bit) on Windows 11, and I can't check for updates and have to manually download each new version after given a popup telling me that the latest Firefox update couldn't be installed. I've tried restarting the computer, tried running the Mozilla Maintenance Service, and installing the latest updates for Firefox and Windows 11. Nothing I've tried has worked, and no other help article has helped me thus far.

Asked by Ethan Prieš 6 valandas

Last reply by Ethan Prieš 6 valandas

Why is Firefox 115.10 tabs on Venture OS imac unreadable?

I just migrated to iMac 2019 27" with Venture OS from imac with Yosamanite. Firefox looked weird with TINY tabs and search window, Too much space. I've tried updating and… (read more)

I just migrated to iMac 2019 27" with Venture OS from imac with Yosamanite. Firefox looked weird with TINY tabs and search window, Too much space. I've tried updating and restarting Mac but no change. Same with themes. You can see the screen with open Firefox.

Asked by RavenFox Prieš 7 valandas

Firefox Update Popup Notifications on Mac?

Recently a popup notification came up when I opened firefox on my mac. Its been awhile since I opened it and without thinking I clicked : o ~ Now I worry if it'ss le… (read more)

Recently a popup notification came up when I opened firefox on my mac. Its been awhile since I opened it and without thinking I clicked : o ~ Now I worry if it'ss ledgit? Does Firefox give a popup box in top right corner when it needs an update? I wasn't on any strange website or anything but I'm always concerned and dont remember seeing that before.

My firefox now says its up to date after it restarted ~ it's running 125.0.3

Any advise is appreciated.

Asked by jason144 Prieš 8 valandas

Sound continues to play after pressing the back button when watching videos

Windows 10 Home 22H2 Firefox 125.0.3 For quite awhile I have had an intermittent problem when watching YouTube videos. To watch a video I right click on it and sele… (read more)

Windows 10 Home 22H2 Firefox 125.0.3

For quite awhile I have had an intermittent problem when watching YouTube videos. To watch a video I right click on it and select "open link in new window". If I just click on the video to watch it, the main page may reload when I click on the back arrow and some of the videos I was interested in are no longer displayed. Sometimes my touchpad doesn't recognize the right click and opens the video in the current window. After it starts playing, if I click the back arrow, the video returns to the previous page (which may be reloaded), and sometimes the audio from the video keeps playing, so I have audio for a video that is no longer visible. When this happens, if I click on another video, the audio from both are played. Today I had the same thing happen when I was streaming a TV program from the Spectrum website.

1. If I click on a YouTube video from the main page, should the main page be rebuilt when I click on the back arrow? 2. How do I resolve the audio continuing to play problem? i don't know if this is a Firefox problem but I have no idea where to start to fix it.

Asked by taherte Prieš 8 valandas

Saving all open tabs: links saved but not to the specified folder

Firefox 125.0.2 on Mac When I press shift+cmd+D to bookmark all open tabs, instead of the links being saved to the designated folder, they are all saved to "Bookmarks Me… (read more)

Firefox 125.0.2 on Mac

When I press shift+cmd+D to bookmark all open tabs, instead of the links being saved to the designated folder, they are all saved to "Bookmarks Menu". The designated folder itself also appears with these links but it itself is empty.

I would expect shift+cmd+D to bookmark all links in the folder and the folder to appear in "Bookmarks Menu". This is what use to happen ages ago. I'm not sure what caused the change in behavior. Anyone have any ideas on fixing this?

Asked by Tom Prieš 3 dienas

Last reply by Tom Prieš 10 valandų

recaptcha

Today May 1, I noticed that any website that shows a recaptcha checkbox, including the google recaptcha demo (https://www.google.com/recaptcha/api2/demo) only shows an in… (read more)

Today May 1, I noticed that any website that shows a recaptcha checkbox, including the google recaptcha demo (https://www.google.com/recaptcha/api2/demo) only shows an infinite spinner in firefox v125.0.3. I've tried the same sites in chrome and edge and the recaptcha works fine. In FF, I have cleared my cache, disabled tracking protection, disabled anti-virus and tried troubleshooting mode - still get the infinite spinner. Last week, I had no problems with recaptcha.

Asked by bill340 Prieš 9 valandas

history

How to PROPERLY erase history? I mean, you erase HISTORY...click...there you go...?!?!?...but, what's happening? I erased HISTORY...ah, I erased it FROM the panel but, it… (read more)

How to PROPERLY erase history? I mean, you erase HISTORY...click...there you go...?!?!?...but, what's happening? I erased HISTORY...ah, I erased it FROM the panel but, it WILL remained on the list that it shows on top of the icon (sic) ...someone suggested to go on the panel, select privacy, scroll to history, pass over "Never remember history...." (?) AND then you "click"... Clear...what is the point? clear means clear means clear from EVERYWHERE...sorry about the mess I wrote but I was frustrated

Asked by minutes2go Prieš 9 valandas

Captcha partly loads, spins at tick box, does not time out.

Hi, I can't use Firefox because a captcha won't complete loading. I have uninstalled and reinstalled, cleared cache and disabled add ons. I am using a vpn (PIA). Chrom… (read more)

Hi, I can't use Firefox because a captcha won't complete loading. I have uninstalled and reinstalled, cleared cache and disabled add ons. I am using a vpn (PIA). Chrome and Edge both load and operate OK. Thanks in advance.

Captchas are an ongoing issue. Firefox seems to have a LOT more captchas than other browsers. Is there a problem between Mozilla and Google?

Asked by Brenton Roy Prieš 1 dieną

Last reply by Brenton Roy Prieš 11 valandų

Firefox extremely slow to load pages or connect to Web sites after startup - Follow-Up

I see my original question is now archived at https://support.mozilla.org/en-US/questions/1380948#question-reply I never closed it because I didn't know if my last proc… (read more)

I see my original question is now archived at https://support.mozilla.org/en-US/questions/1380948#question-reply I never closed it because I didn't know if my last process could really fix the issue. It didn't, not always. Over the years, there have been times when the issue would still pop up, but not as often as before (2022 and earlier).

I have a feeling that during an issue, FF is having difficulty setting up shop after starting up. Consequently, it is spending more time before it could become prepared to connect to the Net. I've come up with another "solution," which is deleting (or moving out) xulstore.json in the profile folder after exiting or before starting FF. You can create a batch command or script to execute the process.

So far, FF is connecting immediately after startup.

Asked by mobilesuit Prieš 1 savaitę

Last reply by mobilesuit Prieš 11 valandų

how to turn of annoying "Update available" reminders?

How do I turn off those annoying "update available" notifications/reminders that keep popping up? I've gone into Settings, and in the Updates section firefox only let's m… (read more)

How do I turn off those annoying "update available" notifications/reminders that keep popping up? I've gone into Settings, and in the Updates section firefox only let's me select auto updates or check for updates. I searched online but couldn't seem to find anything about how to disable the notifications all together with the newer version of FF. It's driving me crazy, thinking of switching browsers because of this. Thanks in advance!

Asked by eli.adelson Prieš 19 valandų

Last reply by eli.adelson Prieš 16 valandų

userchrome.js: how to get notified when tabs open and close?

I've recently started using the Tree Style Tab extension, and I'm finding it useful, but I'd like it if the list of tabs could be automatically hidden when only one tab i… (read more)

I've recently started using the Tree Style Tab extension, and I'm finding it useful, but I'd like it if the list of tabs could be automatically hidden when only one tab is open (and automatically shown when more than one tab is open).

I hoped to write an extension to do this, but opening the sidebar from an extension requires a user gesture, so I suspect I'll have to use a userchrome.js script.

From a "userchrome.js"-like environment (i.e. unsandboxed AutoConfig), I can hide and show the sidebar with `SidebarUI.hide()` and `SidebarUI.show("treestyletab_piro_sakura_ne_jp-sidebar-action")`, and I can examine the tabs open in the current window via `gBrowser.tabs`, but I can't see how to get notified when the number of tabs changes (replacing `gBrowser.tabs` with a proxy doesn't work, for example). I suppose I could just check every few seconds? That feels like a bit of a cop-out, though, and gets more and more inefficient the more windows are open.

There's an API for extensions to receive events when tabs open and close, so clearly this is possible. Where should I be looking for this functionality?

(I also don't know how I would go about unregistering an event listener (or cancelling a setInterval call!) when the window closes, assuming that's necessary to avoid leaking resources – is there an event like `chrome-document-global-created` I could listen for, but that fires during teardown of the window rather than when one is created?)

Asked by ash Prieš 16 valandų

firefox won't go to any sites!!

Concurrent with the most recent automatic windows update (may or may not be the problem), Firefox with duck-duck-go will not go to almost any site. All I get is a spinni… (read more)

Concurrent with the most recent automatic windows update (may or may not be the problem), Firefox with duck-duck-go will not go to almost any site. All I get is a spinning icon or a blank page, not even any error messages. This was even true trying to go to this page until I restarted in trouble shooting mode. Until I can get Firefox working again I have been using Chrome with duck-duck-go. Note any search, i.e. 'hotels in Italy' or even 'MSN' do the same: spinning icon or blank page!! Any help would be appreciated. Also I noticed that my bookmarks were missing and there was no bookmarks drop-down on my tools line. I have run malware bytes and it showed clean, same with CCleaner. I have re-installed Firefox; no difference. Please help. and also, any way to find and replace my extensive bookmarks list? I have reduced my privacy to near zero and turned off firewalls and all limits I could find while testing for that. That did not change anything.

Asked by onefoozer Prieš 1 savaitę

Last reply by onefoozer Prieš 19 valandų

Hanging problem

My laptop lost power mid-session and since then Firefox hangs after opening and becomes unresponsive. Can’t do anything on it. Troubleshoot mode does the same. Booted up … (read more)

My laptop lost power mid-session and since then Firefox hangs after opening and becomes unresponsive. Can’t do anything on it. Troubleshoot mode does the same. Booted up my computer in safe mode, no change.

I’m guessing a reinstall would fix it but I had a bunch of tabs open that I’m really trying not to lose. And I didn’t have an account to save them, I’ll rectify that after this.

Asked by jasonthe123 Prieš 21 valandą

4K YouTube Videos Stuttering One One Specific Channel

So I'm having issues playing 4K videos fully on one YouTube channel: https://www.youtube.com/@ClearviewDriving For some reason anything above 1080p gives me bad stutteri… (read more)

So I'm having issues playing 4K videos fully on one YouTube channel: https://www.youtube.com/@ClearviewDriving

For some reason anything above 1080p gives me bad stuttering but on other channels videos don't stutter or freeze when playing 1440p or 4K quality.

Firefox is updated, I don't use Extensions other than Ad Blocker and I have that off on YouTube anyway. Seems strange that it'd only affect one specific channel.

I have a very good gaming PC too so the hardware isn't the issue.

Asked by Mattt_PC Prieš 6 dienas

Last reply by Mattt_PC Prieš 22 valandas