Hiển thị các câu hỏi được đánh dấu: Xem tất cả các câu hỏi
  • Đã giải quyết
  • Đã lưu trữ

When Firefox is on, Desktop Window Manager consumes a lot of RAM

I have multiple monitors and most often have Firefox windows open on each. Lately, I've been noticing that the Desktop Window Manager process is consuming a huge amount o… (xem thêm)

I have multiple monitors and most often have Firefox windows open on each. Lately, I've been noticing that the Desktop Window Manager process is consuming a huge amount of RAM. At the same time, consumption completely disappears with the closing of Firefox windows. Video: https://i.imgur.com/pHCa7Hh.mp4 (I left it for a while then closed Firefox windows) After a while, I noticed that already 13 GB of memory is being used by DWM. I don't know if sites affect behavior, but most often I have https://music.yandex.ru/home open

OS: Windows 11 (Microsoft Windows [Version 10.0.22621.1928]). Firefox: 115.0.1 (64-bit) Screen setup: 1 - 3840 x 2560 with 200% scale, 2 - 1920 x 1080 with 100% scale.

Được hỏi bởi unavailable 1 năm trước

Được trả lời bởi unavailable 1 năm trước

  • Đã giải quyết
  • Đã lưu trữ

Always sorted bookmarks

How do I have all my bookmarks and folders sorted by name automatically and permanently? When I open Bookmarks I want to see the folders sorted and the bookmarks inside … (xem thêm)

How do I have all my bookmarks and folders sorted by name automatically and permanently? When I open Bookmarks I want to see the folders sorted and the bookmarks inside each folder sorted, automatically so I never have to manually. In other words, behave like Windows File Explorer.

I'm almost certain I had it working that way on a previous installation of FireFox, but I can't get this new installation of Firefox to do the same.

Được hỏi bởi PickerDad 1 năm trước

Được trả lời bởi jscher2000 - Support Volunteer 1 năm trước

  • Đã giải quyết
  • Đã lưu trữ

[SOLVED] Keyword in bookmark caused Firefox to redirect all searches starting with the word "amazon" to Amazon

Whenever I type something in the URL bar that starts with the word "amazon," instead of getting a Google search for what I typed, I get redirected to Amazon.com with what… (xem thêm)

Whenever I type something in the URL bar that starts with the word "amazon," instead of getting a Google search for what I typed, I get redirected to Amazon.com with whatever I typed as a product search. For example, if I type "amazon sucks" in Firefox's URL bar, instead of getting a Google search for the phrase "amazon sucks," I get an Amazon page with the word "sucks" pre-filled in Amazon's product search (and a screen full of socks).

I don't have a search keyword for "amazon" in my Firefox settings. As far as I can tell, no other magic word does the same thing. (For example, if I type "yahoo sucks" or "walmart sucks," I get the desired Google searches. I don't get redirected to a Yahoo or Walmart page.

How do I turn this behavior off?

Được hỏi bởi Jon9 1 năm trước

Được trả lời bởi jscher2000 - Support Volunteer 1 năm trước

  • Đã giải quyết
  • Đã lưu trữ

How to import password csv?

So I'm using firefox on my old PC and want to export the login data to my new PC. Firefox has export passwords to CSV but there is no import CSV in firefox on the new PC.… (xem thêm)

So I'm using firefox on my old PC and want to export the login data to my new PC. Firefox has export passwords to CSV but there is no import CSV in firefox on the new PC. There's import HTML but... firefox exported to CSV not HTML so I'm really confused, why would it export to a format that cannot be import?

Được hỏi bởi CorkyKitty 1 năm trước

Được trả lời bởi Terry 1 năm trước

  • Đã giải quyết
  • Đã lưu trữ

Double icons on Stop & Reload buttons when using custom icons

When reloading a page, or navigating to a new page, the default Stop icon momentarily appears over my own Reload icon, and the default Reload icon also appears over my St… (xem thêm)

When reloading a page, or navigating to a new page, the default Stop icon momentarily appears over my own Reload icon, and the default Reload icon also appears over my Stop icon.

Please see attached image and animation.

Any idea if this is a minor bug?

Below is my code to split the Reload button into Reload & Stop buttons, then to add text to the navigation buttons, and finally to add icons to the navigation buttons.

This anomaly happens whether or not I split the Reload & Stop buttons. With just a single Reload button, I'm also seeing the default Reload icon appear over my own.

Thank you.

/* ---------- SPLIT RELOAD BUTTON INTO RELOAD & STOP ------------- */
#reload-button, #stop-button {
   display: inherit !important; 
} 
#reload-button > .toolbarbutton-icon {
  -moz-appearance: none !important; 
}


/* ------------ ADD TEXT LABELS TO NAVIGATION TOOLBAR BUTTONS --------------- */
/* Shows both icon and label for toolbarbuttons */
toolbar .toolbarbutton-1[label]{
  flex-direction: column;
  align-items: center !important;
}
toolbar .toolbarbutton-1[label]:not([disabled]):hover{ background-color: var(--toolbarbutton-hover-background) !important; }
toolbar .toolbarbutton-1[label] > .toolbarbutton-icon,
toolbar .toolbarbutton-1[label] > .toolbarbutton-badge-stack{
  padding: var(--toolbarbutton-inner-padding) !important;
  padding-bottom: 0px !important;
  height: calc(var(--toolbarbutton-inner-padding) + 16px) !important;
  border: none !important;
  background-color: transparent !important;
  box-shadow: none !important;
}
toolbar .toolbarbutton-1[label] > .toolbarbutton-text {
  display: flex !important;
  min-height: 16px !important;
  padding-top: 3px !important;
  padding-bottom: 6px !important;
  background-color: transparent !important;
  overflow: hidden;
  width: 9ch; /* changes space between buttons */
}
toolbar .toolbarbutton-1[label] > .toolbarbutton-text::before{
  margin-inline: auto;
 }
:root:not([uidensity="compact"]) toolbar .toolbarbutton-1[label] > .toolbarbutton-text{ padding: 2px !important; }


/* ------------ ADD CUSTOM ICONS TO NAVIGATION TOOLBAR BUTTONS ----------- */
#back-button {
   list-style-image: url("image/back.png") !important;
   padding-top: 8px !important;
}
#back-button image{
   max-height: 16px !important; 
   max-width: 16px !important;
   padding: 0px !important;
   margin-bottom: 3px !important;
}
#forward-button {
   list-style-image: url("image/forward.png") !important;
   padding-top: 8px !important;
}
#forward-button image{
   max-height: 16px !important; 
   max-width: 16px !important;
   padding: 0px !important;
   margin-bottom: 3px !important;
}
#reload-button {
   list-style-image: url("image/reload.png") !important;
   padding-top: 8px !important;
}
#reload-button image{
   max-height: 16px !important; 
   max-width: 16px !important;
   padding: 0px !important;
   margin-bottom: 3px !important;
}
#stop-button {
   list-style-image: url("image/stop.png") !important;
   padding-top: 8px !important;
}
#stop-button image{
   max-height: 16px !important; 
   max-width: 16px !important;
   padding: 0px !important;
   margin-bottom: 3px !important;
}
#print-button {
   list-style-image: url("image/print.png") !important;
   padding-top: 8px !important;
}
#print-button image{
   max-height: 16px !important; 
   max-width: 16px !important;
   padding: 0px !important;
   margin-bottom: 3px !important;
}
#home-button {
   list-style-image: url("image/home.png") !important;
   padding-top: 8px !important;
}
#home-button image{
   max-height: 16px !important; 
   max-width: 16px !important;
   padding: 0px !important;
   margin-bottom: 3px !important;
}

Được hỏi bởi Slouch 12 tháng trước

Được trả lời bởi Slouch 12 tháng trước

  • Đã giải quyết
  • Đã lưu trữ

PiP Pause/Play Bug

When enabling the PiP player window for say a YouTube video from the YouTube website - pressing the 'pause' button on the PiP player window followed by doing any forms of… (xem thêm)

When enabling the PiP player window for say a YouTube video from the YouTube website - pressing the 'pause' button on the PiP player window followed by doing any forms of multitasking like opening another window, or opening another program/app or file etc, and then a few seconds later pressing the 'play' button on the PiP player window - it doesn't actually play the video.

You can click the 'play' button over and over and over again but the video in the PiP player window will not play. In order to get the video to play again you have to exit the PiP player window by clicking 'back to tab' and then clicking the 'PiP' icon again.

Using Firefox version 115.0.2

Anyone else experiencing this?

Được hỏi bởi TheThingKing 1 năm trước

Được trả lời bởi TheThingKing 1 năm trước

  • Đã giải quyết
  • Đã lưu trữ

Small font size on some websites

Firefox is displaying a smaller font on some websites. It only does it new windows, not in a private window and other browsers are fine. Screenshots attached show the co… (xem thêm)

Firefox is displaying a smaller font on some websites. It only does it new windows, not in a private window and other browsers are fine.

Screenshots attached show the correct size (first attachment) and the incorrect smaller size (second attachment).

It's not windows accessibility aka ease of access, as nothing else is affected. All pages are on 100% zoom. I've gone to settings -> font -> advanced and the "Allow pages to choose their own fonts, instead of your selections above" is ticked.

Any ideas please?

Được hỏi bởi ldene 1 năm trước

Được trả lời bởi cor-el 1 năm trước

  • Đã giải quyết
  • Đã lưu trữ

Extensions not showing up in toolbar or customize menu

Any extensions I install suddenly don't show up in my toolbar or the customization menu anymore, so I also can't drag them there manually. Deleting the extensions and re… (xem thêm)

Any extensions I install suddenly don't show up in my toolbar or the customization menu anymore, so I also can't drag them there manually.

Deleting the extensions and re-installing them didn't work, neither did deleting the extensions folder itself.

Does anyone know how I can fix this? I've attached a screenshot of the customization menu and extensions menu below.

Thanks :)

Được hỏi bởi Aci 1 năm trước

Được trả lời bởi Terry 1 năm trước

  • Đã giải quyết
  • Đã lưu trữ

115.0.1 update for MAC tradingview not working now

just updated to 115.0.1 on the Mac yesterday and now tradingview website isn't working - i tried adding it as an exception in EnhancedTracking and CookieSiteData like i d… (xem thêm)

just updated to 115.0.1 on the Mac yesterday and now tradingview website isn't working - i tried adding it as an exception in EnhancedTracking and CookieSiteData like i did with ebay to get it working again but no luck with tradingview... any ideas ? thx

Được hỏi bởi fourcolordoctor 1 năm trước

Được trả lời bởi fourcolordoctor 1 năm trước

  • Đã giải quyết
  • Đã lưu trữ

Disable F11 original solution not working in latest version (115.0 64-bit)

The solution for the original Disable F11 (https://support.mozilla.org/en-US/questions/1255696) is no longer working. When the solution is executed from the Browser Conso… (xem thêm)

The solution for the original Disable F11 (https://support.mozilla.org/en-US/questions/1255696) is no longer working. When the solution is executed from the Browser Console...

doc = Services.wm.getMostRecentWindow("navigator:browser").window.document; if(E=doc.getElementById('key_fullScreen')){E.removeAttribute('keycode');E.removeAttribute('command');}

The return is a reference to "HTLMDocument chrome://browser/content/browser.xhtml" which can be opened up and displays more information.

It used to just come back with something like "Undefined." and then it worked (F11 was disabled for the browser instance). Looks like it just started to not work with this latest version of 115.0 64-bit as this solution has been working for over a couple of years now.

Is there a way to enable this to work in the latest version?

Được hỏi bởi SouthSlope 1 năm trước

Được trả lời bởi cor-el 1 năm trước

  • Đã giải quyết
  • Đã lưu trữ

Unintended muting

Long-time problem: Running Firefox 115.6.0esr (64-bit) on Windows 7 Home Premium SP1 (64-bit). Viewing "CNN live" in one tab. Mutes if I open any another app/window [Logi… (xem thêm)

Long-time problem: Running Firefox 115.6.0esr (64-bit) on Windows 7 Home Premium SP1 (64-bit). Viewing "CNN live" in one tab. Mutes if I open any another app/window [Login to website #1 [CNN live] and view/listen...Open anything else; CNN mutes] (Note- This happens in both Firefox and Chrome) Any ideas/suggestions for how to avoid this behavior? Thank you, Ron

Được hỏi bởi ronbar59 1 năm trước

Được trả lời bởi zeroknight 1 năm trước

  • Đã giải quyết
  • Đã lưu trữ

Firefox ignoring system timezone

Firefox 115.0b7 is not correctly handling my system timezone, and using GMT instead. This only happens in specific pages, such as when accessing a website, or in `about:h… (xem thêm)

Firefox 115.0b7 is not correctly handling my system timezone, and using GMT instead. This only happens in specific pages, such as when accessing a website, or in `about:home`. It doesn't happen in `about:config` or `about:profiles`, for instance.

`privacy.resistFingerprinting` is set to `false`. The problem persists in Troubleshoot mode. The issue isn't present in Firefox ESR 102.12.0.

Running `date -R` with the system shell: `Sat, 22 Jul 2023 12:10:42 -0300`

Javascript console at `about:config`: ``` > Date() "Sat Jul 22 2023 12:10:42 GMT-0300 (Brasilia Standard Time)" > new Date() Date Sat Jul 22 2023 12:10:42 GMT-0300 (Brasilia Standard Time) > (new Date()).getTimezoneOffset() 180 ```

Javascript console at `about:home` or `https://example.com`: ``` > Date() "Sat Jul 22 2023 15:10:42 GMT+0000 (GMT)" > new Date() Date Sat Jul 22 2023 12:10:42 GMT-0300 (Brasilia Standard Time) > (new Date()).getTimezoneoffset() 0 ```

Được hỏi bởi Felipe Silva 1 năm trước

Được trả lời bởi Felipe Silva 1 năm trước

  • Đã giải quyết
  • Đã lưu trữ

Restore last session

Ever since I update Firefox a month or so ago, every time I open the browser it wants to restore my last session. I've went into setting and check it to make sure I did h… (xem thêm)

Ever since I update Firefox a month or so ago, every time I open the browser it wants to restore my last session. I've went into setting and check it to make sure I did have it on. I even turn it on, rebooted and the took it off and rebooted. Nothing seams to work. Any help?

Được hỏi bởi Home 1 năm trước

Được trả lời bởi Home 1 năm trước

  • Đã giải quyết
  • Đã lưu trữ

Firefox 115.3.1esr hangs randomly for 5-10 minutes

I'm using Windows 7 and have been migrated to the esr updates for Firefox. I think this problem started cropping up just before going to the esr versions, but not sure. … (xem thêm)

I'm using Windows 7 and have been migrated to the esr updates for Firefox. I think this problem started cropping up just before going to the esr versions, but not sure. Firefox will a) randomly hang and do nothing for 5-10 minutes and then pick up fine b) tends to hang a lot when signing into websites like banks, etc, doing the same thing as (a). I've updated FF several times since then, but same problem. I did try to do 1 fix which suggested creating a new "places" database, but that did not solve the problem. Not sure where to go from here as nothing has changed on my computer since the problem started - no new software, etc.

Được hỏi bởi bgula 1 năm trước

Được trả lời bởi zeroknight 1 năm trước

  • Đã giải quyết
  • Đã lưu trữ

Images and redered graphics are fuzzy until you zoom in

For a while now (can't remember when it started) rendered graphics and text on FF is fuzzy. Examples of this can be see on Google maps, Miro, Powerpoint etc. On Chrome, E… (xem thêm)

For a while now (can't remember when it started) rendered graphics and text on FF is fuzzy. Examples of this can be see on Google maps, Miro, Powerpoint etc. On Chrome, Edge etc the rendering is sharp at all zoom levels but in FF its fuzzy until you zoom in.

Viewing on a 4k monitor, running 115.0.2 (64-bit), using the Windows store install Hardware acceleration is turned on. Tested on multiple PCs, all Windows 11

Attached images which shows the comparison between Firefox and Edge Both browser windows are the same size and the default zoom (100%) Examples attached are for Miro and Powerpoint

Được hỏi bởi shashankkaul 1 năm trước

Được trả lời bởi shashankkaul 1 năm trước

  • Đã giải quyết
  • Đã lưu trữ

I Closed My Firefox Tabs, and When I Use Ctrl + Shift + T, Only Half of the Windows Are Restored

I had something like 7 windows open 10 minutes ago (yes I am a tab hoarder). I was trying to run a game that used a lot of RAM, so I decided that I would close ALL of my … (xem thêm)

I had something like 7 windows open 10 minutes ago (yes I am a tab hoarder). I was trying to run a game that used a lot of RAM, so I decided that I would close ALL of my firefox tabs in hope that the game would run smoother with the 5gb that Firefox was using. I didn't think anything of losing the tabs because I had accidentally closed windows in the past using the big red 'x', and an easy ctrl + shift + t always restored the entire window no problem. When I tried to open firefox again within the next 5 minutes, only 3 of the windows restored themselves, I assume using the general > startup > open previous windows and tabs setting. Using Ctrl + Shift + T did nothing to restore them. Please help, as the windows that did reopen were the ones that I cared the least about.

Được hỏi bởi lucas.gorter 1 năm trước

Được trả lời bởi zeroknight 1 năm trước

  • Đã giải quyết
  • Đã lưu trữ

How can I prevent a specific address from appearing in the address bar?

I'd like to be able to prevent a specific address from appearing in the Firefox address bar (as a suggestion) when I start to type in the address bar. I tried deleting t… (xem thêm)

I'd like to be able to prevent a specific address from appearing in the Firefox address bar (as a suggestion) when I start to type in the address bar. I tried deleting the cookies associated with a particular address, but the address still appears as a suggestion in the address bar when I start typing its name. Thanks a lot for any help.

Được hỏi bởi robertclay3 1 năm trước

Được trả lời bởi cor-el 1 năm trước

  • Đã giải quyết
  • Đã lưu trữ

Save Bookmarks from other drive

Hello, my WIN 10 Drive got busted, meaning I can not boot with it anymore. However, with an other WIN10 drive I still can access the data. I need to save all the Firefox … (xem thêm)

Hello, my WIN 10 Drive got busted, meaning I can not boot with it anymore. However, with an other WIN10 drive I still can access the data. I need to save all the Firefox bookmarks before I will format the Drive and install a fresh WIN10. All the searches just tell how to backup when Firefox is open or Win is running: Press WIN Key... etc. None of them is applicable. I have I have bookmarks saved as bookmarks as well as I have a lot on the upper bar. I need them all.

Please teach me how I can back them up and restore on a fresh Firefox. In previous crashes I lost a lot of bookmarks already. ' Thank you.

Dorian

Được hỏi bởi dwctrader18 1 năm trước

Được trả lời bởi dwctrader18 1 năm trước

  • Đã giải quyết
  • Đã lưu trữ

Problem Accessing Constant Contact

My community association uses Constant Contact for its documents, notices, etc. When I get an email message from them, it often contains several links beginning with http… (xem thêm)

My community association uses Constant Contact for its documents, notices, etc. When I get an email message from them, it often contains several links beginning with https://r20.rs6.net. When I try to access one of those links, Firefox tells me "Hmm. We’re having trouble finding that site. We can’t connect to the server at r20.rs6.net." Chrome and Edge do not give the same error - they can access the requested page. Is there some setting in Firefox that I need to change to fix this problem? Firefox has been my default browser for years, but I also like to read notices from my community association.

Được hỏi bởi Jim 1 năm trước

Được trả lời bởi zeroknight 1 năm trước