顯示下列標籤的問題: 顯示所有問題

add-ons and extensions

How can I remove extensions? I'm blocked from Google with the same screen no matter what I do. It says search.funsafetabsearch.com thanks … (閱讀更多)

How can I remove extensions? I'm blocked from Google with the same screen no matter what I do. It says search.funsafetabsearch.com thanks

tanyaabrams99 於 3 週前 詢問

cor-el 最近回覆於 3 週前

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… (閱讀更多)

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!

eli.adelson 於 3 個月前 詢問

oldbrownhat 最近回覆於 3 週前

  • 已解決

How to PERMANENTLY close Bookmarks sidebar panel?

As of a few days ago whenever I start Firefox the window appears with the Bookmarks sidebar panel already opened. I click the "X" on the sidebar and it will close - until… (閱讀更多)

As of a few days ago whenever I start Firefox the window appears with the Bookmarks sidebar panel already opened. I click the "X" on the sidebar and it will close - until the next time I start Firefox. If I choose Menu->View->Sidebar->Bookmarks and uncheck it the panel will close - until the next time I start Firefox. No matter how the Bookmarks sidebar is closed, it will always reappear when Firefox is restarted. Even if I switch to some other sidebar, Bookmarks will replace it on startup.

I've searched about:config and found no setting which seems to control sidebar behavior on startup.

I assume this is the result of some recent update. Is there no longer a way to permanently disable the Bookmarks sidebar?

MacOS 12.7.5 Firefox 127.0 (64-bit)

bertfw 於 2 個月前 詢問

cor-el 於 2 個月前 解答

Firefox update process doesn’t launch by itself after closing Firefox for update anymore on macOS Monterey

For the last few weeks, I have had the following issue on macOS Monterey (version 12.7.5) on Apple M1: When I choose the “Restart now” option in the “Update ready to ins… (閱讀更多)

For the last few weeks, I have had the following issue on macOS Monterey (version 12.7.5) on Apple M1:

When I choose the “Restart now” option in the “Update ready to install” dialog, Firefox closes and I type the password at the admin prompt, but then nothing else happens. The Mozilla Updater process won’t appear in the Activity Monitor, and if I click on the Firefox icon in the Dock, another admin prompt appears, then the updater actually does its thing but at the same time the old version of Firefox tries to launch during the updating process. Sometimes, the updated version of Firefox appears while the old version is also on the screen. It is a really janky process and I always fear that something gets severely broken.

This never happened on macOS Big Sur, the previous major version of macOS.

gowildler 於 3 週前 詢問

LastPass icon is missing from the browser bar.

I have installed the LastPass extension for Firefox, more than once, but the LastPass icon does not appear in my browser bar. It used to be there, but disappeared a few … (閱讀更多)

I have installed the LastPass extension for Firefox, more than once, but the LastPass icon does not appear in my browser bar. It used to be there, but disappeared a few weeks ago. I have tried to reinstall the extension, but it has had no effect.

fools.and.irish 於 4 週前 詢問

Paul 最近回覆於 4 週前

Firefox shows wrong layout with Shiny for Python 1.0.0

The new Shiny for Python 1.0.0 seems to be incompatible with Firefox. I made this dummy app: Start of code *** from shiny import App, render, ui, reactive fro… (閱讀更多)

The new Shiny for Python 1.0.0 seems to be incompatible with Firefox. I made this dummy app:

      • Start of code ***

from shiny import App, render, ui, reactive from pathlib import Path


app_ui = ui.page_fillable(

   ui.panel_title(
       ui.row(
       ui.column(6, ui.h1("title1")),
       ui.column(6, ui.h1("title2"))
       )
   ),
   ui.layout_sidebar(
       ui.sidebar(
           ui.input_text("input_text1", "input_text1", value=""),
           ui.input_text("input_text2", "input_text2", value=""),
           ui.input_text("input_text3", "input_text3", value=""),
           ui.input_text("input_text4", "input_text4", value=""),
           ui.input_text("input_text5", "input_text5", value=""),
           ui.input_selectize("input_selectize1", "input_selectize1", choices=["1", "2"]),
           ui.input_numeric("input_numeric1", "input_numeric1", value=4),
           ui.input_numeric("input_numeric2", "input_numeric2", value=8),
           ui.input_numeric("input_numeric3", "input_numeric3", value=20),
           ui.input_selectize("input_selectize2", "input_selectize2", choices=["3", "4", "5"]),
           ui.input_numeric("input_numeric4", "input_numeric4", value=1),
           ui.input_numeric("input_numeric5", "input_numeric5", value=1),
           ui.input_switch("input_switch1", "input_switch1", value=False),
           ui.input_switch("input_switch2", "input_switch2", value=False),
           ui.input_switch("input_switch3", "input_switch3", value=False),
           ui.input_action_button("input_action_button1", "input_action_button1"),
           ui.input_action_button("input_action_button2", "input_action_button2", disabled=True),
           width="350px"
       ),
       ui.layout_columns(
           ui.card(
               ui.card_header("card_header1"),
               ui.output_data_frame("card1"),
               full_screen=True
           ),
           ui.card(
               ui.card_header("card_header2"),
               ui.output_data_frame("card2"),
               full_screen=True
           ),
           col_widths=[12, 12]
       )
   )

)


def server(input, output, session):

   @reactive.event(input.input_action_button1)
   def reactive_function1():
       pass
   @output
   @render.data_frame
   def card1():
       return reactive_function1()
   @output
   @render.data_frame
   def card2():
       pass
   @reactive.effect
   @reactive.event(input.write_guides)
   def reactive_function2():
       return reactive_function1()

src_dir = Path(__file__).parent / "src" app = App(app_ui, server, static_assets=src_dir)

      • End of code ***

Then I started it and opened it with Safari (left) and Firefox (right).

With Shiny for Python 0.10.2 both browsers seem fine (click the link for a screenshot): https://github.com/user-attachments/assets/c1a40577-6341-40c5-b952-7fb99cb3330e

But as soon as I switch to Shiny for Python 1.0.0, Firefox fails, but Safari is still able to display: https://github.com/user-attachments/assets/6fbc60a6-2487-4195-a7c3-a326bdfc7373

Not sure, if this is of any use, but I can "expand" the sidebar in Firefox leading to this: https://github.com/user-attachments/assets/4f2d318f-809b-463d-9c99-7c2a8670397d

Any ideas, what's wrong? Can I fix this in my code or does this need to be fixed by the devs?

philipp-schneider 於 4 週前 詢問

Inqurinig

Attn: To whom it may concern @Fire Fox Mozilla My desktop version is macOS Ventura 13.6.7 your Fire Fox browser goes to the Mac-browser 115. The reason that I'm inquiring… (閱讀更多)

Attn: To whom it may concern @Fire Fox Mozilla My desktop version is macOS Ventura 13.6.7 your Fire Fox browser goes to the Mac-browser 115. The reason that I'm inquiring is I have to constantly have reload or restart the page again it is slowing

me down. Because if this continues I may have change browsers.

dvdhrnnd 於 4 週前 詢問

Mozilla VPN

I have cancelled my subscription which you say you will return if I cancel within 30 days? Is that correct. Also I want to cancel the VPN on my desktop and phone now bu… (閱讀更多)

I have cancelled my subscription which you say you will return if I cancel within 30 days? Is that correct. Also I want to cancel the VPN on my desktop and phone now but I can't see how I can achieve this. I would be grateful for your help.

Thank you.

patricia.clements 於 4 週前 詢問

Paul 最近回覆於 4 週前

Support of DNS SVCB / HTTPS Alias mode

Hello, Our DNS supports SVCB and HTTPS records. We setup HTTPS is alias mode and want to redirect a HTTPS connection from Host_A to Host_B. Here a example: communicati… (閱讀更多)

Hello, Our DNS supports SVCB and HTTPS records. We setup HTTPS is alias mode and want to redirect a HTTPS connection from Host_A to Host_B. Here a example: communication.baloise.be. 30 IN HTTPS 1 communicationbaloisebe.customdomain.chkmkt.com.

I can see that the Firefox sent a HTTPS request, got back the correct answer, but does not connect to the new host B. A lot people required that DNS support SVCB /HTTPS records, but the browsers do not.

When will Firefox support the Alias mode for SVCB / HTTPS Records?

Thanks pascal

Pascal Raemy 於 4 週前 詢問

site info certificate detail tab isn't duplicated when you try view more than one certificate, hindering comparison

Way to duplicate problem. on MacOS Sonoma 14.5 (23F79) Using Firefox Desktop 128.0.2 (64-bit) (intel architecture) Visit https://www.eventbrite.com/ Click Verify Securi… (閱讀更多)

Way to duplicate problem.

on MacOS Sonoma 14.5 (23F79) Using Firefox Desktop 128.0.2 (64-bit) (intel architecture)

Visit https://www.eventbrite.com/ Click Verify Security icon at left of address bar. Click Connection Secure Click More Information Click View Certificate A tab opens, showing the certificate details. Leave that tab open

Visit https://www.eventbrite.com.au/ Follow same process A new tab isn't opened - as the certificate is the same. The issue is - without the ability to side by side compare, it's difficult to know that the certificate is the same, for a beginner.

Resolution: Visit other websites, then the certificate details tab is duplicated.

xenek 於 1 個月前 詢問

I lost access to my connect.mozilla.org account

(Idk where else to post this on the site) Idk exactly what happened, other than that I changed emails on my Mozilla account and when I signed into connect.mozilla.org wi… (閱讀更多)

(Idk where else to post this on the site)

Idk exactly what happened, other than that I changed emails on my Mozilla account and when I signed into connect.mozilla.org with it, it had me create a new username. My old profile page is still up.

TheWonderAlmighty 於 1 個月前 詢問

Flashing screen

I have a Mac running on Ventura v13.6.7. I also run Express VPN. F/F v 128.0.2[64 bit]. I have as my home page the BBC.Most of the time if I click on sport or the weather… (閱讀更多)

I have a Mac running on Ventura v13.6.7. I also run Express VPN. F/F v 128.0.2[64 bit]. I have as my home page the BBC.Most of the time if I click on sport or the weather button the screen starts flashing.I cleared the cashe that lasted a couple of days then it started flashing again. By the way when the screen is flashing the reload button is flashing. Any help greatly appreciated.

Mike.

Michael Gilbert 於 1 個月前 詢問

Youtube TV freezing on Firefox 120.0.2, Mac Ventura

I have been using Firefox for quite a while. Recently, I cannot use Firefox for Youtube TV. The audio plays, but the first screen is frozen, and does not play the live v… (閱讀更多)

I have been using Firefox for quite a while. Recently, I cannot use Firefox for Youtube TV. The audio plays, but the first screen is frozen, and does not play the live video. I have toggled the hardware acceleration without resolution.

Any ideas?

Thank you

mozilla491 於 1 個月前 詢問

Fios router, VPN and Firefox not allowing access to Facebook, Yahoo,

Installed new FIOS router. I used a VPN and Firefox to access Facebook, Yahoo, and a number of other sites (like a bank). With the new router, I can't access these … (閱讀更多)

Installed new FIOS router. I used a VPN and Firefox to access Facebook, Yahoo, and a number of other sites (like a bank). With the new router, I can't access these

5kbzzjsf9g 於 1 個月前 詢問

I am unable to click on icon in an online article to email a copy. immediate return to article. Works in SAFARI.

I was reading an article in the CBN Website https://www2.cbn.com/news/us/elon-musk-tricked-putting-son-puberty-blockers-xavier-was-killed-woke-mind-virus# it has an i… (閱讀更多)

I was reading an article in the CBN Website

  https://www2.cbn.com/news/us/elon-musk-tricked-putting-son-puberty-blockers-xavier-was-killed-woke-mind-virus#
 it has an in article window(?) with a button to email a copy of the article. Clicking the button does nothing. I am

immediately returned to the article. it works fine in Safari. Firefox 128.0.2 on Mac laptop with macos sonoma 14.5

 can you help me?

hugho 於 1 個月前 詢問