Hiển thị các câu hỏi được đánh dấu: Xem tất cả các câu hỏi

Bookmark Folders

I would like to create bookmark folders WITHIN a bookmark folder. Example: I search the American South, so I have a SOUTH bookmark. But within that bookmark, I would l… (xem thêm)

I would like to create bookmark folders WITHIN a bookmark folder. Example: I search the American South, so I have a SOUTH bookmark. But within that bookmark, I would like to have a subfolder for each state. Please help!

Được hỏi bởi johnglavin 1 ngày trước

Location not blocked.

I use Firefox with a VPN. I also use the Chameleon extension to alter my fingerprint. When I log into Messenger.com it asks if this is me and gives my actual, physical lo… (xem thêm)

I use Firefox with a VPN. I also use the Chameleon extension to alter my fingerprint. When I log into Messenger.com it asks if this is me and gives my actual, physical location. I've checked in settings under location and it doesn't show any sites requesting my location. I have it open in one of the tabs where it's showing my location. I have block all location requests checked. How can I get Firefox to not show my physical location?

Also on this page, it gives I'm using Firefox and the OS I'm using. Both are supposed to be changed for fingerprinting protection.

This looks like it could be a big security loophole. Any help is appreciated.

Được hỏi bởi 95rhino404 1 ngày trước

Hover cards occassionally stop working

Every so often while browsing, for several FF versions, now, hover card functionality on some sites will simply stop working, even after a complete browser restart. Event… (xem thêm)

Every so often while browsing, for several FF versions, now, hover card functionality on some sites will simply stop working, even after a complete browser restart. Eventually the cards come back on their own.

Not a crucial issue, frankly, but an annoying one, and I'd like to know why it keeps happening and what can be done to stop it.

Được hỏi bởi damien.williams7 1 ngày trước

Why are sites no longer working on Firefox?

I am finding more and more sites that I regularly go to are no longer working on firefox. One site was because HTML5 apparently does not work on firefox. But others I don… (xem thêm)

I am finding more and more sites that I regularly go to are no longer working on firefox. One site was because HTML5 apparently does not work on firefox. But others I don't know about why are no longer working on firefox. I thought it might be streaming related but just today I could not access one of my banks on firefox, and I tried many times, but had no problem signing on using Chrome.

Được hỏi bởi bjhansen53 2 ngày trước

Lần cuối trả lời bởi cor-el 1 ngày trước

The Firefox icon on my Task Bar only opens an ad "Get Firefox for Desktop" Need access to real start page.

I have a full current installation of Firefox, after a struggle to get Bing off my system (Win11) I briefly got back to a personalized start page which had a large text "… (xem thêm)

I have a full current installation of Firefox, after a struggle to get Bing off my system (Win11) I briefly got back to a personalized start page which had a large text "Firefox" heading and allowed me to add apps in small boxes and click to start an app. That page has disappeared and all I get is the ad referred to in the title. How can I replace the ad with the page I can load with app icons?

Được hỏi bởi GregS 1 ngày trước

Ability to disable RTX HDR on selective sites?

Right now i love my HDR content in most scenarios, except on a few sites where its just bad. Is it possible to be able to block it on certain sites where you dont want to… (xem thêm)

Right now i love my HDR content in most scenarios, except on a few sites where its just bad. Is it possible to be able to block it on certain sites where you dont want to apply it?

Được hỏi bởi Dajova 1 ngày trước

Lần cuối trả lời bởi Dajova 1 ngày trước

Fire Fox browser

Fire Fox Browser not working not changing screens & slide bar dont work why dont you fix it use to work good not anymore

Được hỏi bởi raledj 1 ngày trước

Lost bookmarks

Hello, Relevant system referenced below: MacBook Pro 2021 Mac OS 14.5 Firefox 126.0.1 (64-bit) Carbon Copy Cloner 6.1.11 (7673) I have a case of vanishing bookmarks. I… (xem thêm)

Hello,

Relevant system referenced below:

MacBook Pro 2021 Mac OS 14.5 Firefox 126.0.1 (64-bit) Carbon Copy Cloner 6.1.11 (7673)

I have a case of vanishing bookmarks. I quit Firefox last evening with command-Q as I’ve done a thousand times before. When I launched it this morning I was greeted with Firefox with an empty Bookmarks Toolbar and “Getting started” message. I opened a Manage Bookmarks window and everything there was empty too. I found, as well, that all of my saved UIDs and passwords were gone except for three, two of which I haven’t used in months. Weird.

Next I opened Firefox Help and found information about Troubleshooting Mode; I restarted in troubleshooting mode but nothing had changed. After restarting in normal mode, I tried Restoring Bookmarks; I chose Manage Bookmarks from the dropdown and then clicked the button in the Library window. Restore showed only one file and it was created today with only 14 items. Selecting Choose File… showed Desktop with Old Firefox Data highlighted. In that folder was only w34y3u9y…628 folder. From there I selected bookmarkbackups and the only file there was bookmarks-2024-06-06_11…lz4, a file created at 3:33 today. I found the key4.db file and it was created at 3:33 today.


I have Carbon Copy Cloner and use it for a weekly backup to a remote SSD drive. There are a year's-worth or so of weekly backups on that device. I tried trashing Firefox and reinstalling it from last week’s backup. While this worked, it didn’t solve the issue; it was still like a fresh copy of Firefox with no bookmarks.

I’m hopeful that I can restore the bulk of the lost bookmarks from CCC but I have no clue as to which files/folders to restore and I don’t want to guess. If you think this is possible, please tell me which files or folders to replace. Should I delete the files to be replaced from the current system and if so where are they located? I’m comfortable using Terminal for basic purposes but need explicit directions for entering commands and navigating to locations or files.

Thanks for your time,

David

Được hỏi bởi wuzupdc 2 tuần trước

Lần cuối trả lời bởi wuzupdc 1 ngày trước

Development: Very specific problem with getting the caret position in a contenteditable div

Hello, I'm a web developer. I'm using the Firefox Developer Edition and currently working on a project that requires caret manipulation. I have this function right here t… (xem thêm)

Hello, I'm a web developer. I'm using the Firefox Developer Edition and currently working on a project that requires caret manipulation. I have this function right here that fetches the caret's client rect: ``` function getCaretRect(): DOMRect | null {

 const sel = window.getSelection()
 if (!sel || sel.rangeCount === 0) return null
 const range = sel.getRangeAt(0)
 const rects = range.getClientRects()
 if (rects.length === 0) return null
 return rects[0]

} ``` Here is where the issue arises. Suppose I have a contenteditable div with two line breaks (no new lines), and the second line is smaller than the first one. If the caret is positioned somewhere that is further than the end of the second line, and I press the down arrow key, then left, for some reason the caret rect I get has all values set to zero, like this: `{ x: 0, y: 0, width: 0, height: 0, top: 0, right: 0, bottom: 0, left: 0 }` I will add an image to explain further.

I don't have this issue on Chromium based browsers, but cross browser support is important for me.

There is one more issue to do with caret manipulation which is how contenteditable divs are handled. On a Chromium based browser, if I have a parent div that's contenteditable, then another div that's not contenteditable (contenteditable="false" explicitly), then two children divs which are both contenteditable (or more), I can navigate through the divs freely using the arrow keys and focus is managed better alongside event handlers. This is not present on Firefox, however.

If this is not the right place to ask for help then please guide me where is more suitable.

Được hỏi bởi Rayane Benamre 1 ngày trước

Lần cuối trả lời bởi cor-el 1 ngày trước

Picture In Picture mode isnt sticky

Im using Ubuntu 22.04 LTS Intel cpu I7 9th gen NVIDIA gpu but i disabled it My problem is that the Picture in Picture mode isnt sticky if i press anything it vanishes fro… (xem thêm)

Im using Ubuntu 22.04 LTS Intel cpu I7 9th gen NVIDIA gpu but i disabled it My problem is that the Picture in Picture mode isnt sticky if i press anything it vanishes from view.

Được hỏi bởi Mcmunhuu 5 ngày trước

Lần cuối trả lời bởi cor-el 1 ngày trước

Youtube videos load very slowly... if they load

For the last several weeks (can't give an exact date, but it's been more than just a couple weeks, less than a couple months), both my husband and I have had issues loadi… (xem thêm)

For the last several weeks (can't give an exact date, but it's been more than just a couple weeks, less than a couple months), both my husband and I have had issues loading videos in FF. We both have the latest version of FF. I went thru "Fix common audio and video issues" and did all those things, as well as trying to load the videos in troubleshooting mode. Nothing has helped (tho now that i cleared all the cache, i'm gonna have to log back into all those websites :( ). Nothing else is problematic. Our internet connection is fine. In fact, my husband has resorted to using MS browser to watch videos--they load fine in that browser. I have no other idea what to do. Searching your database for "youtube videos load slow" only resulted in a couple hits with no resolution. Hopefully this isn't the third. thanks

Được hỏi bởi rileth1 2 ngày trước

Lần cuối trả lời bởi rileth1 1 ngày trước

Firefox opens up a second browser screen automatically when I am already in a website!

When I login to my main Firefox browser and then access a website within a short while the browser screen opens up again automatically. In other words, a second window w… (xem thêm)

When I login to my main Firefox browser and then access a website within a short while the browser screen opens up again automatically. In other words, a second window which is very irritating. How can I stop this from happening?

Được hỏi bởi graemesmith300653 4 tháng trước

Lần cuối trả lời bởi munrorod 1 ngày trước

Videos on YouTube will not load after Update

It started this morning (6/23/24) the page for a YouTube video will load but the video doesn't play. I have cleared the cookies and cache, shut the browser down, restarte… (xem thêm)

It started this morning (6/23/24) the page for a YouTube video will load but the video doesn't play. I have cleared the cookies and cache, shut the browser down, restarted the computer, turned off all the extensions, and have turned off hardware acceleration. Nothing has changed, I can watch other videos on Firefox and Youtube work as normal on other browsers. Last night (6/22/26) before shutting down may computer for the night I had an update for Firefox and shut the browser so it could update. The image is of what the video section is displaying.

Được hỏi bởi Jason Worlock 1 ngày trước

audio no firefox

gente, o que aconteceu com o firefox (normal, beta e nightly) que não funciona mais áudio. já tentei de tudo para reconfigurar, baseado em tutoriais na web, porém não se … (xem thêm)

gente, o que aconteceu com o firefox (normal, beta e nightly) que não funciona mais áudio. já tentei de tudo para reconfigurar, baseado em tutoriais na web, porém não se consegue mais ouvir áudio nos firefox.

Được hỏi bởi nelioj 2 ngày trước

Lần cuối trả lời bởi jonzn4SUSE 1 ngày trước

Bing "ate" my Firefox setup.

As a longtime user of Firefox, I had a nice setup where after the start page, clicking on the Firefox icon would take me to a page headed "Firefox" in large letters. On t… (xem thêm)

As a longtime user of Firefox, I had a nice setup where after the start page, clicking on the Firefox icon would take me to a page headed "Firefox" in large letters. On that page I had placed the icons for my frequently used programs. Each of the small "icon boxes" had menus that would allow entering a URL so that when clicked, the desired app would open. I was exploring MS Bing, mostly because I like the pictures they put up each day. It looks as though a "new Improved" version of Bing brings along the new MS AI component. Together they seem to have removed my Firefox setup or hidden it where I can't retrieve it. By using Firefox settings, I was able to remove the Bing URL. Good riddance!, but can I retrieve my page of links to most-used programs? I don't know where to look for that. If I have to reconstruct it, how is that done. Or how can I start a replacement. Sincere thanks, Greg Schultz

Được hỏi bởi GregS 1 ngày trước

Lần cuối trả lời bởi James 1 ngày trước

SCORM modules hang on loadingn

Hi, I need to take part in a course that is delivered via moodle and that employs SCORM videos. After some modules I am experiencing an issue where firefox does not loa… (xem thêm)

Hi,

I need to take part in a course that is delivered via moodle and that employs SCORM videos.

After some modules I am experiencing an issue where firefox does not load them anymore. When you try to load a module a spinner appears and stays there indefintely.

Initially, trying to reload the module could eventually unblock it. Now this is not possible anymore. Disabling the enhanced protection does not change the situation.

The modules work just fine with chromium.

Having firefox being a stopper for online learning resources is a real issue. Any help will be appreciated.

Được hỏi bởi sergio.callegari 1 ngày trước

Lần cuối trả lời bởi TyDraniu 1 ngày trước

YouTube playing videos super fast and/or skipping to the end

Lately YouTube playing videos have been playing super fast or skipping straight to the end. I mean, they are horribly fast. Things to know: I am posting here because… (xem thêm)

Lately YouTube playing videos have been playing super fast or skipping straight to the end. I mean, they are horribly fast.

Things to know:

  • I am posting here because I can't determine whether browsers may have settings unique to them that I need to change. This also happens in Chrome, but not Edge.
  • I was recently forced to upgrade to Windows 11 - I can't say this issue happened exactly at that time, but fairly recently after the upgrade. I am running Windows 11 Pro.
  • This does NOT happen when playing in a private browser window, either Firefox or Chrome.
  • Having the Mozilla VPN on or off has no effect.
  • I am sure the playback speed is set to normal. I have tried changing the playback speed to anything but normal and then back to normal and the current video runs correctly UNTIL I play the next video.
  • This does not happen with Vimeo.
  • It does not happen in FF for Android.

Any questions, thoughts, or advice would be appreciated.

Được hỏi bởi StopTheInsanity 1 ngày trước

Lần cuối trả lời bởi StopTheInsanity 1 ngày trước

Separate Themes for Private Browsing

Is there a way to set a separate theme for the private browsing option? I like being able to visually distinguish between the normal browser and the private one, but enab… (xem thêm)

Is there a way to set a separate theme for the private browsing option? I like being able to visually distinguish between the normal browser and the private one, but enabling a theme seems to set the same visuals for both.

If separate themes are not a thing, perhaps they could be added in a later update?

Thanks for all your time and effort.

Được hỏi bởi Manny 3 ngày trước

Lần cuối trả lời bởi Agent virtuel 1 ngày trước