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

Asked by tanyaabrams99 1 மணி நேரம் முன்பு

Last reply by cor-el 59 நிமிடங்கள் முன்பு

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!

Asked by eli.adelson 2 மாதங்களுக்கு முன்பு

Last reply by 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)

Asked by bertfw 1 மாதத்திற்கு முன்பு

Answered by cor-el 1 மாதத்திற்கு முன்பு

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.

Asked by gowildler 1 நாள் முன்பு

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.

Asked by fools.and.irish 1 நாள் முன்பு

Last reply by Paul 1 நாள் முன்பு

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?

Asked by philipp-schneider 2 நாட்கள் முன்பு

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.

Asked by dvdhrnnd 2 நாட்கள் முன்பு

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.

Asked by patricia.clements 3 நாட்கள் முன்பு

Last reply by Paul 3 நாட்கள் முன்பு

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

Asked by Pascal Raemy 3 நாட்கள் முன்பு

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.

Asked by xenek 3 நாட்கள் முன்பு

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.

Asked by TheWonderAlmighty 4 நாட்கள் முன்பு

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.

Asked by Michael Gilbert 4 நாட்கள் முன்பு

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

Asked by mozilla491 5 நாட்கள் முன்பு

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

Asked by 5kbzzjsf9g 4 நாட்கள் முன்பு

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?

Asked by hugho 4 நாட்கள் முன்பு