टैग किए गए सवाल दिखा रहा है: सभी प्रश्न दिखाएँ

PDF "always ask" doesn't work properly anymore

Firefox 138.0.1, MacOS Monterey 12.3 PDF files: settings is set to "Always ask" (see attached) However, when I click on a PDF link, and get the dialog "Open With" is gra… (और पढ़ें)

Firefox 138.0.1, MacOS Monterey 12.3

PDF files: settings is set to "Always ask" (see attached) However, when I click on a PDF link, and get the dialog "Open With" is grayed out, and the only option available is "Save File" (see attached screenshot). (A few weeks or months ago it all worked correctly.)

Is there a way to get "Open" working again?

Asked by firefox-nmm 14 घंटों पहले

Last reply by jscher2000 - Support Volunteer 8 घंटों पहले

ad blocking

currently using FF; I do NOT have any ad blocking software installed ( that I know of) I searched my computer for the word block, and it did not show it anywhere. I also … (और पढ़ें)

currently using FF; I do NOT have any ad blocking software installed ( that I know of) I searched my computer for the word block, and it did not show it anywhere. I also have Mozilla Seamonkey installed, but not using it. Each time I visit a news website I get a popup that claims Im using an ad blocker. I have searched all those adbocker pgms on my computer and none exist. Why am I getting these pop ups. I think I also checked the AVG pgm, but didnt see an adblocker there. How do I fix this situation from continuing

Asked by Rj Kulman 13 घंटों पहले

Last reply by jscher2000 - Support Volunteer 9 घंटों पहले

Bookmarks sidebar

After a Firefox update, my bookmarks menu, which was on the left side of the screen vanished. I have not been able to restore it. When I click the bookmark box (at the to… (और पढ़ें)

After a Firefox update, my bookmarks menu, which was on the left side of the screen vanished. I have not been able to restore it. When I click the bookmark box (at the top of the page) I get three choices showing up on the upper left side of the screen. 1) Summarize , brainstorm, etc. 2) Tabs from other devices. and 3) History. So how do I get bookmarks???

TNX, Bob

Asked by Bob

Last reply by meaou 17 घंटों पहले

Some Links Opening Second/Third Instances of Firefox Despite Firefox already Being Open

My problem is as described in the subject line: I'm getting multiple instances of Firefox opened when I click links from email or web pages. This just started happening… (और पढ़ें)

My problem is as described in the subject line: I'm getting multiple instances of Firefox opened when I click links from email or web pages.

This just started happening within the last couple of days. In the past, whenever I opened a link a new window was opened in the already open instance of Firefox. Somehow some setting has been changed (a guess) that has caused a change in behavior.

Firefox is my default browser, but I do keep Chrome open for some testing of HTML/CSS I'm writing. Chrome is NOT my default browser.

I did some searching without finding anything I understood well enough to implement.

I would appreciate any help with this issue as having multiple instances of the app running is driving my octogenarian brain nuts.

Asked by rabbit 1 दिन पहले

Last reply by jscher2000 - Support Volunteer 1 दिन पहले

My Bookmarks do not not show when I open Firefox. I have enabled Bookmarks and they should show but I have to manually make it visible every time

My Bookmarks do not not show when I open Firefox. I have enabled Bookmarks under View > Sidebars but they don't show and I have to manually make the visible every time… (और पढ़ें)

My Bookmarks do not not show when I open Firefox. I have enabled Bookmarks under View > Sidebars but they don't show and I have to manually make the visible every time I us Firefox.

Asked by leydendesign 1 दिन पहले

Last reply by jscher2000 - Support Volunteer 1 दिन पहले

Open Tabs & Windows on Start-Up Not Working

Typically, I have about 6 windows open at a time with about 20 tabs in each window. Previously, I was able to shut down my computer and all of them would reopen again. … (और पढ़ें)

Typically, I have about 6 windows open at a time with about 20 tabs in each window. Previously, I was able to shut down my computer and all of them would reopen again. But, today is the second day in a row that that hasn't worked even though I have Open Previous Tabs & Windows checked off in the settings.

I would appreciate figuring this out as it's a pain in the ass opening everything again.


  • I just noticed that Firefox is supposed to open automatically. This doesn't happen either.

I'm using a LG laptop running Windows 11.

Changes after updates

After the last couple of Firefox updates, my settings have been automatically changed. This has not happened until recently How can I stop Firefox from changing my settin… (और पढ़ें)

After the last couple of Firefox updates, my settings have been automatically changed. This has not happened until recently How can I stop Firefox from changing my settings when it updates? OS is Windows 11. TYIA!

Firefox File Upload Dialog Box hidden right-click context menu options

When I am trying to upload a file to any website in Firefox the right click context menu options are all missing. I have tried a new profile, troubleshoot mode, seems lik… (और पढ़ें)

When I am trying to upload a file to any website in Firefox the right click context menu options are all missing. I have tried a new profile, troubleshoot mode, seems like nothing fixes it. Other browsers work like intended so I know it is Firefox internal

licence key

i cant put my licence key into firefox i put it into the box but it dos,nt give me an option to enter it

How to completly remove buildt in AI in Firefox

It nags me, that I ain't asked if I want the AI function, you just force it over me without giving me any choice, if I want it.. SO, how to COMPLETELY remove the AI fun… (और पढ़ें)

It nags me, that I ain't asked if I want the AI function, you just force it over me without giving me any choice, if I want it..

SO, how to COMPLETELY remove the AI function in Firefox and Linux Ubuntu..

AI scare me and I definitely don't want ANY of it!!!

Last Side Bar View Not Retained

Since update to Firefox version 138.0.1, my last viewed side bar is never automatically displayed upon REOPENING Firefox. I must always > View > Re-select the desir… (और पढ़ें)

Since update to Firefox version 138.0.1, my last viewed side bar is never automatically displayed upon REOPENING Firefox. I must always > View > Re-select the desired sidebar choice >

How can I get this side bar to re-display automatically upon opening Firefox as it used to in previous versions?

Asked by RichS

Last reply by Paul

Webassembly.compile() doesn't support SharedArrayBuffer in 138

Hello, as per description I noticed that firefox version 138 requires an ArrayBuffer as the argument of WebAssembly.compile() and doesn't allow anymore (like in 137) a S… (और पढ़ें)

Hello,

as per description I noticed that firefox version 138 requires an ArrayBuffer as the argument of WebAssembly.compile() and doesn't allow anymore (like in 137) a SharedArrayBuffer, is this intended or it will be fixed in the future? Follows a simple test case. Kind reagards.


--- index.html --- <title>Example</title> <script> let instance = undefined; async function loadWasm() { try { const response = await fetch('./sum.wasm'); const buffer = await response.arrayBuffer(); const sharedBuffer = new SharedArrayBuffer(buffer.byteLength); const tmpView = new Uint8Array(sharedBuffer); tmpView.set(new Uint8Array(buffer)); const module = await WebAssembly.compile(sharedBuffer); instance = await WebAssembly.instantiate(module); } catch (error) { alert(`failed to compile in wasm: ${error.message}`); } } loadWasm(); function testWasm() { if (instance) alert(`sum 1 + 2 = ${instance.exports.add(1, 2)}`); else alert('invalid instance, failed to compile'); } </script> <button onclick="testWasm()">Press to run wasm function (sum)</button> --- ---

--- sum.wat --- (to convert into .wasm using: wat2wasm sum.wat -o sum.wasm) (module (func $add (param $lhs i32) (param $rhs i32) (result i32) local.get $lhs local.get $rhs i32.add) (export "add" (func $add)) ) --- ---

Asked by Fra

Last reply by TyDraniu