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

Strange download from Firefox today - xRqj7qhl.html - Sixe: zero bytes - Kind: HTMLtext

I received this download from Firefox today, July 22, 2025: xRqj7qhl.html - Size: zero bytes - Kind: HTML text . I've never experienced this before. Is it legitimate? Th… (xem thêm)

I received this download from Firefox today, July 22, 2025: xRqj7qhl.html - Size: zero bytes - Kind: HTML text . I've never experienced this before. Is it legitimate? Thanks

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

Linux / Plasma 6.4/Wayland (amd gpu) After enabling HDR in firefox - all non HDR (youtube) content just shows green sceen

I have HDR working in Proton games and mpv fine (using Plasma 6.4 / Wayland) I enabled HDR in Firefox (gfx.wayland.hdr), and HDR content works in YouTube fine ( looks ama… (xem thêm)

I have HDR working in Proton games and mpv fine (using Plasma 6.4 / Wayland)

I enabled HDR in Firefox (gfx.wayland.hdr), and HDR content works in YouTube fine ( looks amazing!) however.. I have an issue in that all non HDR content doesn’t show any video (I have sound) just a green sceen (see screen shot) including all ads.

Any idea how to work round this ?

I have AMD 7800 GPU .

Cheers

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

Middle-click opens link in new tab and switches to it — how to stop the auto-switch?

When I middle-click a link in Firefox, it opens in a new tab, but it also switches me to that new tab immediately. I’d prefer to stay on the current tab after middle-clic… (xem thêm)

When I middle-click a link in Firefox, it opens in a new tab, but it also switches me to that new tab immediately.

I’d prefer to stay on the current tab after middle-clicking, and just have the new tab open in the background just like google chrome does. Is there a setting to stop it from automatically switching?

Thanks!

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

Images from canvas black or transparent: img.src = canvas.toDataURL(); // FF: 'image/jpeg'=black. Png,webp,default=transparent.

I don't know if this ever worked in FF, since I've been on Chrome a while. I tried canvas.toBlob() in FF without a solution. The behavior is the same whether the served i… (xem thêm)

I don't know if this ever worked in FF, since I've been on Chrome a while. I tried canvas.toBlob() in FF without a solution.

The behavior is the same whether the served image is jpg or webp. A Servlet delivers the image data, here in webp:

          response.setHeader("Content-Type", "image/webp");

On page, I use a canvas thus => see '// FIREFOX'

     var canvas = document.createElement( 'canvas' );
     canvas.width = width;
     canvas.height = avail_height;
     var context = canvas.getContext( '2d' );
     context.drawImage( imgsrc, 0, 0, width, avail_height);
     context.lineWidth = 150;
     // FIREFOX: canvas.toDataURL('image/jpeg')=black, png,webp,default=transparent
     img.src = canvas.toDataURL('image/jpeg');
     img.onmousedown = disableDragging; // for FF
     img.style.opacity = "1.0";
     console.log('setImg ok');

Inspecting a black jpeg:

        data:image/jpeg;base64,...

Thanks!

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

Automatic hiding tabs bar and address bar

Firefox on Windows 11 has suddenly and without my apparent action started automatically hiding the tab bar and the address bar to give all the vertical space to the curre… (xem thêm)

Firefox on Windows 11 has suddenly and without my apparent action started automatically hiding the tab bar and the address bar to give all the vertical space to the current tab. I do not like this (I have big monitors and I want those bars always visible)

How do I turn this one and why did it turn on in the first place?

Thank you for having the Q&A facility.

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

Does not open previous windows and tabs

There are many tabs open in the firefox window. I'm closing the firefox. I'm opening it again.All tabs opened during the previous opening disappear.Either a new page or a… (xem thêm)

There are many tabs open in the firefox window. I'm closing the firefox. I'm opening it again.All tabs opened during the previous opening disappear.Either a new page or a single tab opens. The settings are set to "Open previous windows and tabs" (Image 1)


I go to "Firefox View" ---"Open tabs". (image 2) I see 2-5 windows there.In this case, there are 3 windows.WINDOW 1 is my main window with the tabs that should have been saved and opened when firefox was launched again. I close all tabs from unnecessary windows with a cross.Only window 1 remains. But when restarting, an empty or different window opens again.And again, there are a lot of unnecessary and incomprehensible windows on the list. Previously, a window with restored tabs from the previous session always opened. Question: 1)How can I restore the normal recovery of the previous session when restarting? 2) Tell me.I can somehow switch between windows (Firefox View" ---"Open tabs)(Image 1) Thank you.

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

Drop Down Menu On Certain Websites Won't Work

I recently ported from chrome to firefox about 3 days ago and was tryin to access the dropdown menus on this website https://www2.gov.bc.ca/gov/content/governments/govern… (xem thêm)

I recently ported from chrome to firefox about 3 days ago and was tryin to access the dropdown menus on this website https://www2.gov.bc.ca/gov/content/governments/government-id/bc-services-card/your-card/get-a-card

I realized it wasn't working so I turned off my adblocker (ublock origin), refreshed the site and still not working.

Also attempted to use troubleshoot mode and still does not work.

Cleared cache + cookies and used troubleshoot mode and nothing working still.

I lastly checked the website was working by opening the same link on chrome after all that and it works perfectly fine over there. Any ideas what could possibly be the issue?? I basically have a fresh install of firefox with no changed settings besides anything that might of been copied over from Chrome when firefox automatically asks you to migrate your stuff over, and used the troubleshoot mode + clearing cookies and cache

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

Using canvas/context to scale an image that displays ok before removes the image data, ok in Chome/Safari.

The app sizes two adjacent images to the same height. Maybe there's a better approach? This works, in that I see the original image displayed at the wrong size: //img.… (xem thêm)

The app sizes two adjacent images to the same height. Maybe there's a better approach?

This works, in that I see the original image displayed at the wrong size:

   //img.src = imgsrc.src;

This sizes the image but without the data (black square for toDataURL w/ image/jpeg) in FF, but not Chrome and Safari:

   var canvas = document.createElement( 'canvas' );
   canvas.width = width;
   canvas.height = avail_height;
   var context = canvas.getContext( '2d' );
   // Tried/failed: Fill white background for JPEG export
   //context.fillStyle = '#fff';
   //context.fillRect(0, 0, canvas.width, canvas.height);
   context.drawImage( imgsrc, 0, 0, canvas.width, canvas.height);
   context.lineWidth = 150; // ??
   img.src = canvas.toDataURL('image/jpeg', 0.92);
   img.onmousedown = disableDragging; // for FF
   img.style.opacity = "1.0"

The page is the view.html one gets to via Enter on phobrain.com.

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

imported bookmarks toolbar doesn't display as toolbar

After exporting bookmarks.html from Ffox on old computer, importing it to Ffox on the new one, all good, except that bookmarks toolbar shows on the imported list but does… (xem thêm)

After exporting bookmarks.html from Ffox on old computer, importing it to Ffox on the new one, all good, except that bookmarks toolbar shows on the imported list but doesn't display as toolbar.

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

Keep Bookmark Folders Open

I have a folder with many bookmarks in it, and when I want to open multiple links in the folder but not ALL of them, I have to keep opening the bookmarks folder after mid… (xem thêm)

I have a folder with many bookmarks in it, and when I want to open multiple links in the folder but not ALL of them, I have to keep opening the bookmarks folder after middle clicking each link 1 at a time. I can't open the entire folder - there are 100+ and say I want to open 10.

Is there a way to keep the bookmark folder open while I open each link in new tabs?

Thanks!

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

Home Button goes away

My toolbar is visible when I click on the 'Open a new tab' plus sign at the top. But if I go to a site, either from a search or from bookmarks, the toolbar disappears. I … (xem thêm)

My toolbar is visible when I click on the 'Open a new tab' plus sign at the top. But if I go to a site, either from a search or from bookmarks, the toolbar disappears.

I just (yesterday) had to delete profile, delete bookmarks, delete Firefox, install Firefox, in order to get it where it would save bookmarks again. The toolbar, prior to that, did NOT disappear when I went to a new site.

Please help.

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

How do i get FF to open a bookmark in a new tab, without having to create a new tab first? Its an annoying extra step

When I click on a bookmark, FF opens it in the current tab, overwriting the site I had open. I have to add a tab, then click on the bookmark to have it in a new tab. This… (xem thêm)

When I click on a bookmark, FF opens it in the current tab, overwriting the site I had open. I have to add a tab, then click on the bookmark to have it in a new tab. This is an annoying extra step. How to I change it? I already tried the open links in new tabs instead of windows. Makes no difference On or Off

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

Can't sign into Hotmail.

For the past 2 months I've found it very difficult to sign into my Hotmail account using Firefox. Microsoft keep telling me to use a VPN or another device. I like answer… (xem thêm)

For the past 2 months I've found it very difficult to sign into my Hotmail account using Firefox. Microsoft keep telling me to use a VPN or another device. I like answering emails on my computer because of its large screen. I've tried signing in about 2000 times now. Firefox told me they can't help me because I'm not a Mozilla subscriber even though they own Firefox. Microsoft told me it's Mozilla's problem. Can anyone help me please. John in the Philippines.

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

Where did the Home tab go on the taskbar ?

I upgraded with a new cpu and windows 11. When I open firefox, I noticed the "Home" tab missing from the upper lefthand tabbar next to the refresh. Is there a setting tha… (xem thêm)

I upgraded with a new cpu and windows 11. When I open firefox, I noticed the "Home" tab missing from the upper lefthand tabbar next to the refresh. Is there a setting that I am missing or is it part of a update that eliminated that feature ?

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

Unable to make Purchases on Firefox

Hello. I frequently shop at particular store and have never had a problem. Now, it's off and on. One order will go through with the help of their customer service (doing… (xem thêm)

Hello. I frequently shop at particular store and have never had a problem.

Now, it's off and on. One order will go through with the help of their customer service (doing a direct purchase). Then a few weeks later I don't have a problem and can order without assistance. Now, once again, I can't purchase anything. Once my credit card goes through my address disappears. Then I add my address again and then my credit card is deleted. When my address or my credit card is deleted the order has in bold red letters telling me to add it again. I've tried Chrome after Firefox had issues but it had an issue too.

Is there something I can disable while I shop? I'm not having any problems with any other sites. Thank you!

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

Trying to import bookmarks from Chome.

I've tried 7 times to import my bookmarks from Chrome into Firefox. Firefox says that the import was successful each time, but the bookmarks aren't showing up in the Book… (xem thêm)

I've tried 7 times to import my bookmarks from Chrome into Firefox. Firefox says that the import was successful each time, but the bookmarks aren't showing up in the Bookmark Tool Bar. It's only showing the older import, not the latest. If I go to one of the new pages, it shows that it is bookmarked, but the list that it belongs to is nowhere to be found....

So how do I update to the newly imported "Imported From Firefox" folder?

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

Sound output problem

I am using FF desktop. All of a sudden, I get no sound through my laptop speakers when trying to watch videos (on YT and FB for example). I still get sound if I use exter… (xem thêm)

I am using FF desktop. All of a sudden, I get no sound through my laptop speakers when trying to watch videos (on YT and FB for example). I still get sound if I use external speakers through the 3.5" jack. I still get sound through other browsers, no matter if it's through the laptop speakers or external ones. So, it is definitely an FF problem. Sound works fine on all other media files on the laptop. Refreshing FF didn't fix it. Nor did reinstalling or restarting the laptop. I tried changing the autoplay settings as suggested in the help article, but still no laptop audio via FF. How can I fix this? Thanks

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