How to include SNI in client hello by Firefox
We need Firefox send TLS message with SNI extension, otherwise the server does not answer the client hello. Which version or how to archive it?
We need Firefox send TLS message with SNI extension, otherwise the server does not answer the client hello. Which version or how to archive it?
Up until a few years ago it was possible to save new bookmarks to the Bookmarks Menu and they would appear in alphabetical order. This has no longer been the case for me … (read more)
Up until a few years ago it was possible to save new bookmarks to the Bookmarks Menu and they would appear in alphabetical order. This has no longer been the case for me in the last 2-3 years (I regularly check to ensure that I do have the latest version running). When I save a new bookmark it appears right at the end of all the other bookmarks I have. I can view the bookmarks in full alphabetical order when I use Bookmark manager BUT cannot save them permanently in this format. It simply reverts back to the old part sorted list when I try to save a new bookmark. Any help gratefully received.
Hi, Firefox community, A website aimed at providing regional utility services, such as online utility bill inquiries and payments. One of the services is, integrating Fes… (read more)
Hi, Firefox community, A website aimed at providing regional utility services, such as online utility bill inquiries and payments. One of the services is, integrating Fesco Bill, which offers users the ability to check their utility bills online. Ensure that the service works seamlessly on Firefox, My questions are:
Are there specific steps or tools recommended to test the compatibility of such embedded tools with Firefox? How can I optimize external service integrations to ensure they load efficiently and maintain privacy standards for Firefox users?
Any advice or guidance from the community would be greatly appreciated! Thanks in advance for your help.
Best regards,
Everytime when going to youtube with firefox, I get language "dansk" instead of "german" or "swiss german". My firefox: 132.0.2 (64-bit). My language setting in firefox: … (read more)
Everytime when going to youtube with firefox, I get language "dansk" instead of "german" or "swiss german". My firefox: 132.0.2 (64-bit). My language setting in firefox: german My language setting in Windows 11: swiss german
this is very annoying, because I first have to change on the youtube page the language to "german" in order to understand the menu.
In Google Chrome youtube behaves normally.
Hello, I run a website, https://tasbihdigital.net/ , and I've noticed something unusual. When browsing the site using Firefox, some pages seem to load slower compared to … (read more)
Hello, I run a website, https://tasbihdigital.net/ , and I've noticed something unusual. When browsing the site using Firefox, some pages seem to load slower compared to other browsers. Has anyone else experienced this, or are there specific troubleshooting steps I can take?
Thanks in advance!
Hi! Since lately (can't pinpoint it precisely), I have the following problem: Whenever I click on a mailto url, it opens Thunderbird but inserts the mail with three leadi… (read more)
Hi! Since lately (can't pinpoint it precisely), I have the following problem: Whenever I click on a mailto url, it opens Thunderbird but inserts the mail with three leading slashes.
These are not present in the url itself and also I don't get them when I right click -> copy mail address. From Gnome Web or Chromium, this does not occur.
I'm on Firefox 132.0 and Fedora 41. If you need more information, I will happily provide them.
Best regards, Carroll
Hello, How can I move the cursor to be, by default, place into the "search the web" firefox space and not in the address bar. I want that when I start Firefox and when I… (read more)
Hello,
How can I move the cursor to be, by default, place into the "search the web" firefox space and not in the address bar. I want that when I start Firefox and when I open a new tab. I don't want third party. I want to modify the About:config to fix this
Regards
I need to inspect browser's UI (tabs bar etc.) to make userChrome.css, but there's no up-to-date info about doing it in current FF to be found anywhere.
I have a Mac that was running Sequoia 10.14.7 I think. Firefox hasn't been giving search results since yesterday so I updated Firefox and restarted it. Still got blank pa… (read more)
I have a Mac that was running Sequoia 10.14.7 I think. Firefox hasn't been giving search results since yesterday so I updated Firefox and restarted it. Still got blank pages after updating. Firefox suggested re-installing so I did. I got no warning DURING installation that the newest version would not work with Sequoia. There was a light gray circle slash through the icon when I installed it, but have never see that when installing apps before. I was given an option to replace the original Firefox or install a second version, so I chose "replace," thinking I was keeping it simple. I updated Mac OS to Catalina 10.15.7--an action I've been avoiding due to all of my most important documents being on an older version of Word for Mac 2011, and TBH I resent having to pay for a subscription to access my Word & Excel documents for revision or printing, and don't like keeping my documents on the cloud...as required by newer versions of MS Office. Now I have Catalina & the newest version of Firefox and can't do the two most important things I need to do on my computer: Work with my Word docs and Firefox STILL PRODUCES BLANK SEARCH RESULTS PAGES. I've now essentially lost access to all my Office docs due to chain reaction fuster cluck resulting from a blank Firefox search page 2 hours ago. PLEASE ADVISE.
My Google tab won't open anymore in Firefox. I have the latest version. It asks me to restore but nothing happens. I can open google on all other browsers. Safari, Chrome… (read more)
My Google tab won't open anymore in Firefox. I have the latest version. It asks me to restore but nothing happens. I can open google on all other browsers. Safari, Chrome etc. but not Firefox.
I love Firefox, but I'm almost ready to leave. Every time I want to navigate to "shop.bahaiwebsites.com", autocomplete enters "shop.bytique.com", which doesn't exist. How… (read more)
I love Firefox, but I'm almost ready to leave. Every time I want to navigate to "shop.bahaiwebsites.com", autocomplete enters "shop.bytique.com", which doesn't exist. How do I stop this autosuggest? Thank you.
Hey, guys. I have a problem when i type ´ + E or ´ + A, it should produces É and Á but it is deleted instantaneously. In firefox search bar it works as expect, but in sky… (read more)
Hey, guys. I have a problem when i type ´ + E or ´ + A, it should produces É and Á but it is deleted instantaneously. In firefox search bar it works as expect, but in skype or whatsapp it doesnt. My keybord is abnt2
I have a local HTML/Javascript document I use for compressing local image files. It relies on HTMLCanvasElement.toBlob() to achieve the compression in the usual way; a p… (read more)
I have a local HTML/Javascript document I use for compressing local image files. It relies on HTMLCanvasElement.toBlob() to achieve the compression in the usual way; a pertinent excerpt:
const output = document.getElementById("outputDiv"); const blobURL = URL.createObjectURL(file); const img = new Image(); img.src = blobURL; // ... img.onload = function () { URL.revokeObjectURL(this.src); const canvas = document.createElement("canvas"); canvas.width = img.width; canvas.height = img.height; const ctx = canvas.getContext("2d"); ctx.drawImage(img, 0, 0, img.width, img.height); canvas.toBlob( (blob) => { const anchor = document.createElement("a"); anchor.download = getNewFileName(file.name); /* uses extension .webm for .webm, .jpg for everything else */ anchor.href = URL.createObjectURL(blob); anchor.textContent = "DOWNLOAD"; output.append(anchor); }, mime, /* set earlier based on file extension: .webm -> "image/webm", everything else -> "image/jpeg" quality / 100 /* (user-specified) */ ); };
Here's the quirky thing, though: when I'm compressing, say, a .jpeg file (or a .png), clicking on the download link opens a save-file dialog, but when using a .webm file, it opens the compressed image in a new tab! True, I can always then save the image from there (the resulting file is in Firefox's temp folder), but I don't understand the difference in behavior -- and indeed, in at least one other browser I tried (the latest Vivaldi) the download happens as expected regardless of input file type. In all cases the anchor hrefs look like, e.g., "blob:null/724ab85e-53ba-4890-9868-7f1ba27d4278".
Any idea why this is happening? I highly doubt it's the intended behavior.
Browser: Firefox 132.0.2 for Windows. Environment: Windows 10 Home 22H2 version 10.0.19045.
FF v132.0.2 (64-bit). We utilize Sharepoint/Microsoft 365, and since switching to Firefox, the zoom controls normally located in the lower righthand corner for Excel spre… (read more)
FF v132.0.2 (64-bit). We utilize Sharepoint/Microsoft 365, and since switching to Firefox, the zoom controls normally located in the lower righthand corner for Excel spreadsheets is just gone. This is with extensions disabled, even tried Private View. Chrome properly shows it.
Screenshots attached showing Firefox/Chrome. That basically eliminates our ability to use FireFox if that's the case since there's no other way to do it.
I'm logged in to my Firefox account, I visit (for example) ESPN.com on my PC. I adjust the size to fit my PC screen, then when I visit the same site on my laptop the webs… (read more)
I'm logged in to my Firefox account, I visit (for example) ESPN.com on my PC. I adjust the size to fit my PC screen, then when I visit the same site on my laptop the website doesn't look right so I have to size down, but then when I visit on my PC I have to size up again etc etc etc.
I want to individualize the size of webpages, how do I do that?
How can I permanently delete bookmarks? Please explain in simple language as the lingo is foreign to me.
I beleive in the recent versions of Firefox, shortcut keys have been added/changed such that holding the Option key while in the URL Search bar activates other functions … (read more)
I beleive in the recent versions of Firefox, shortcut keys have been added/changed such that holding the Option key while in the URL Search bar activates other functions (Switching search engines: Option + Up/Down Arrow) and completely disables my ability to move left or right through the URL by word.
Is there any way I can disable this shortcut key combination?
once in a while firefox forces me to double click everything. This does not apply to the top of the window: tabs, URL bar, bookmarks toolbar, extensions all work fine. Bu… (read more)
once in a while firefox forces me to double click everything. This does not apply to the top of the window: tabs, URL bar, bookmarks toolbar, extensions all work fine. But everything in the webpage requires a double click. This includes selecting text. A restart makes it go away.
The only extensions I had in use when this happened were uBlock origin, proton pass, and SponsorBlock. Switching into troubleshoot mode fixed it, but after switching back into normal mode it was still fixed, so I can't say that the extensions cause the issue.
I would have just commented on [this related thread](https://support.mozilla.org/en-US/questions/1038784), but it's archived. I never understood the point of archiving a thread. From now until the end of time when people find that thread when googling their issue, there's no way to give them new information. At least in a github issue it can still include a link to other threads that have mentioned it.
I am running firefox 132.0.2 (aarch64) on macos 15.0 (24A335).
I have Firefox 128.3.1esr When viewing PDF the background is transpraent So I can see my wallpaper.
Some fonts are not visible.
I am having problems with log into my Sky email account as each time I log into the (Yahoo mail) I get the following message come up as show in the image below. message… (read more)
I am having problems with log into my Sky email account as each time I log into the (Yahoo mail) I get the following message come up as show in the image below.
message "Control character in cookie value or attribute."
I am able to access my Sky email by other browser "Google Chrome) Any advice on how to correct the issue.
Thank You.