Showing questions tagged: اعرض كل الأسئلة

Requesting access to the memory dump from my Firefox Nightly crash.

Very recently, I was typing a ton of content into a website textarea, when my Firefox Nightly install crashed. I lost all of this work from hours. Is there any way to g… (read more)

Very recently, I was typing a ton of content into a website textarea, when my Firefox Nightly install crashed. I lost all of this work from hours. Is there any way to get access to this data?

Asked by michaelfgarofalo 14 minutes ago

Older scrollbar appearance on newer FF version

Hello FF community. I come here for a question, maybe a confirmation (I'm gonna try to be as short as possible ). I'm using for years infamous Aris-t2 customCSS. I'm abo… (read more)

Hello FF community. I come here for a question, maybe a confirmation (I'm gonna try to be as short as possible ).

I'm using for years infamous Aris-t2 customCSS. I'm about to "jump" from FF v88 on my desktop to V115.0.3esr. I tested everything on my laptop, and set everything on the customCSS so it looks like my actual V88. It's almost identical, but one thing is bugging me: the scrollbar.

Scrollbar on FF115 isn't the same anymore than in V88 as you can see on the screenshot I posted (test scrbr for V115, scrbr2 for V88). The clean one with "3lines grab button" I actually use is less "eye catchy" than the new one. I've made some researches, and apparently, starting FF V97 about 2 years ago, scrollbar has been change to use W10 "flat like" one, and at FF106+, every older code was apparently removed. I tried to changed a few things in about:config, like "widget.non-native-theme.enabled" or multiple commands about scrollbar, nothing changed.

So I just wanted to know if someone could confirm me that the old scroll bar I use is now impossible to get back, or if there's a command I miss that could do the thing.

Thanks, have a nice day ^^

Asked by Icyderg 6 hours ago

Last reply by cor-el 18 minutes ago

How do I get my bookmarks in alphabetical order?

How do I get my bookmarks in alphabetical order? I have tried doing it in "Manage Bookmarks" and I get them in the correct order there, but when I go back to the Bookmark… (read more)

How do I get my bookmarks in alphabetical order? I have tried doing it in "Manage Bookmarks" and I get them in the correct order there, but when I go back to the Bookmarks list, nothing has changed. ???

Asked by miket9043 32 minutes ago

Last reply by zeroknight 20 minutes ago

firefox wont show up in volume mixer

firefox stopped showing up in the volume mixer = no sound i've never had this issue before until recently and i've been using firefox since like ever (2010 or earlier), … (read more)

firefox stopped showing up in the volume mixer = no sound

i've never had this issue before until recently and i've been using firefox since like ever (2010 or earlier), and i managed to fix it a couple weeks ago-ish by following some other people's advice...but it broke again now and i've tried the same things from previous help threads and it still wont fix it: i've reinstalled, refreshed, cleared cache and history etc, made sure it's not muted, checked my volume settings, restarted my windows explorer, restarted the audio in task manager, restarted my pc, made sure i have newest version of firefox, made sure my audio devices were up to date,...etc

i use only a couple extensions and a cute theme and none of those have ever caused me issues either, and I'm using AVG anti-virus if that matters - i'm only using like ublock origin, betterttv, and an extension to add things to a proxy cart that lets me buy things from japan (buyee)

it was working fine last night and the only change from last night til now was that there was a small windows update (i'm on windows 11)

i have no idea how to fix it and i don't want to swap browsers, i know it's only firefox because i launched chrome and that showed up on the volume mixer, and discord and spotify & everything else has sound working properly

if anyone knows how to resolve this or has any potential ideas, please help me, thank you

Asked by minkyung1 56 minutes ago

importing edge profile number 2 or 3 in firefox (seems important)

Hello, i would like to control what might appear on my edge browser as two non-desired profiles as of now. I would like to import them in firefox but it seems impossible… (read more)

Hello,

i would like to control what might appear on my edge browser as two non-desired profiles as of now. I would like to import them in firefox but it seems impossible to import them if not the first profile. It s really annoying and i hope we will soon be able to find a solution.

Kind regards,

Asked by Arnaud 1 hour ago

Name of the profile

I can't change the name of one of my firefox profiles. I have an error where the name is too long and it cannot be changed. Is there any way to do this other than creatin… (read more)

I can't change the name of one of my firefox profiles. I have an error where the name is too long and it cannot be changed. Is there any way to do this other than creating a new profile and deleting the old one?

Asked by dragonka1215 1 hour ago

What is the proper format for the ExtensionSettings policy registry key/value that is used to manage browser extension settings?

When looking at the ExtensionSettings page for Firefox or Chrome they both use an example that shows the registry key Software\Policies\Mozilla\Firefox\ExtensionSettings… (read more)

When looking at the ExtensionSettings page for Firefox or Chrome they both use an example that shows the registry key Software\Policies\Mozilla\Firefox\ExtensionSettings (REG_MULTI_SZ) being set to a long JSON string with every extension ID and the settings for that particular ID. For example...

{

 "*": {
   "blocked_install_message": "Custom error message.",
   "install_sources": ["https://yourwebsite.com/*"],
   "installation_mode": "blocked",
   "allowed_types": ["extension"]
 },
 "uBlock0@raymondhill.net": {
   "installation_mode": "force_installed",
   "install_url": "https://addons.mozilla.org/firefox/downloads/latest/ublock-origin/latest.xpi"
 },
 "https-everywhere@eff.org": {
   "installation_mode": "allowed"
 }

}

The problem with this method is that if I am installing an extension, and I overwrite what already exists in Software\Policies\Mozilla\Firefox\ExtensionSettings then all of those other settings get removed. So even if I am a non-malicious actor and just make a mistake with my installer I can easily delete every other extension's settings. Instead what I have to do is during install I have to read the current value of Software\Policies\Mozilla\Firefox\ExtensionSettings and then insert my extension's settings into the JSON blob.

So the examples that Firefox and Chrome provides do of course work, however they do not make very much sense to me. Why would it be formatted this way since all of those are additional key/value pairs and that is exactly what the registry excels at storing. So why put all of those into a single key/value instead of breaking them into multiple?

Additionally breaking them a part into multiple key/value pairs does work! So if instead of the example above I were to split them into multiple key value pairs it works just fine!

Software\Policies\Mozilla\Firefox\ExtensionSettings

   uBlock0@raymondhill.net
       "installation_mode": "force_installed",
       "install_url": "https://addons.mozilla.org/firefox/downloads/latest/ublock-origin/latest.xpi"

So knowing that this way with multiple key/value pairs works why am I bothering to ask this question at all instead of just doing it the way that makes sense to me? Well the issue is that by breaking it up into multiple key value pairs it actually overrides the other method and makes it so that all those registry settings are ignored. So it doesn't delete them but it still leaves me with nearly the exact same problem.

While I believe "my" way is superior because it uses the registry in a more common sense route, if that is not what the majority of extension developers do then it doesn't matter and I should be conforming to the other way.

As I am typing this question up I did realize just how hard/annoying it is to properly format and make it clear and digestible what the multi key/value format of the registry would look like instead of being a JSON string. So perhaps that is the reason why all the documentation puts it all as one JSON string?

Asked by perihwk+firefox 2 hours ago

Twitch.tv multiple issues after updating to Firefox ESR115.1 from Firefox ESR 102.1

Since yesterday (Sep 26 2023), Twitch.tv has been having multiple issues related to basic functionality of the website, and this has happened before but I did not report … (read more)

Since yesterday (Sep 26 2023), Twitch.tv has been having multiple issues related to basic functionality of the website, and this has happened before but I did not report it because I was able to fix it. I can not purchase or use bits despite Twitch having a stored payment method on file that I have confirmed has sufficient funds, I can not subscribe or gift subscriptions despite Twitch having that same sufficiently funded payment method on file, I can not redeem or earn channel points, I can not send or receive Twitch Whispers (a form of DM), I can not follow or unfollow channels, and I am convinced that if I was to log out, I would not be able to log back in. I can chat in stream chat, and I can watch streams, that's all I can do. But I enjoy using the other features that are currently blocked, I am over 18, and I am the only person that uses this computer, so there should be no parental controls problems either. Yesterday, I restarted my browser, which did NOT alert me that it had updated, and all of this functionality was broken. Roughly 6 months ago I was having the exact same issues, but I was able to fix it by disabling many of the anti-tracking protections on my browser (had to disable them universally except for blocking cryptominers, not just with the shield icon). However, now, even with those settings unchanged, roughly 75% of the features of the website Twitch.tv are nonfunctional. I have included a cropped screenshot of me attempting to redeem something using channel points, the purple box is the button, and the spinner icon stays there for over a minute with nothing happening, which is not how that is supposed to work.

I enjoy watching streams and interacting with people on Twitch.tv, and I wish to continue doing so in the way I am accustomed to. However, it would appear that Firefox has other plans. If this continues, I will be forced to switch to a less secure browser for specifically that site, which is an idea I do not look forward to.

Asked by scinrd 2 hours ago

Last reply by zeroknight 2 hours ago

My dual monitor system is now requiring me to double click Firefox to work in that add on monitor... WHY ???

My dual monitor system is now requiring me to double click Firefox to work in that add on monitor... WHY ??? .. Has something changed that now makes me click on Fire… (read more)

My dual monitor system is now requiring me to double click Firefox to work in that add on monitor... WHY ??? .. Has something changed that now makes me click on Firefox twice to be able to access it on my add on monitor ? I have MS Edge running on the primary laptop monitor and Firefox on the larger add on monitor and lately, I have to select the Firefox browser twice before ' focus ' seems to respond.

I have found many sites that work better with one or the other browsers and have my email and a few others on my larger add on monitor operating under Firefox but something seems to have changed and the delay is a hassle since I manage many different sites as a national admin for the United States Minutemen - American Patriots Coalition.

Is there some setting either in Firefox or the Windows 11 operating system that can eliminate that issue ?

Any suggestions would be greatly appreciated. I used to build my own version of the ' Nightly Firefox ' distribution many years ago but have too many other ' irons in the fire ' anymore.

Asked by Robert Gamble 3 hours ago

Last reply by zeroknight 2 hours ago

How do I turn off lazy loading for tabs definitely and irrevocably?

I can't turn off lazy loading. I set the following about:config settings to "false": browser.sessionstore.restore_on_demand browser.sessionstore.restore_tabs_lazily brow… (read more)

I can't turn off lazy loading. I set the following about:config settings to "false":

browser.sessionstore.restore_on_demand browser.sessionstore.restore_tabs_lazily browser.sessionstore.restore_pinned_tabs_on_demand

Nothing changes. When I start Firefox, it simply won't load all tabs. How do I fix this?

Asked by Lunger 1 week ago

Last reply by zeroknight 2 hours ago

Prevent Firefox from starting automatically

I have followed the steps in the "Prevent Firefox from starting automatically" article: https://support.mozilla.org/en-US/kb/firefox-starts-automatically-when-i-restart-w… (read more)

I have followed the steps in the "Prevent Firefox from starting automatically" article: https://support.mozilla.org/en-US/kb/firefox-starts-automatically-when-i-restart-window

But Firefox keeps starting automatically when I restart my computer. Attached is an image of how the settings are now.

What should I do? This is a bit annoying. I don't use Firefox as my main browser but I work as a customer success manager for an online platform and always need to do some tests on Firefox, but I don't want it to start automatically when I turn on my computer.

I'll for instructions.

Thank you

Asked by moniquelonardi 3 hours ago

Last reply by zeroknight 3 hours ago

Can no longer download

Out of the blue, I can no longer download files using the download arrow. I used to get the prompt asking where to download the files but now don't get anything. I'll get… (read more)

Out of the blue, I can no longer download files using the download arrow. I used to get the prompt asking where to download the files but now don't get anything. I'll get a zip.part file on my desktop, where I have my downloads saved, but that's it. I've updated Firefox, restarted, uninstalled/reinstalled and nothing works.

Asked by jdky500 3 hours ago

Cannot restore the previous (regular) session after exiting private browsing

If I have a firefox window open (one or more), exit it, and start again, I can restore the previous session. However, if in between I open private browsing, it for some r… (read more)

If I have a firefox window open (one or more), exit it, and start again, I can restore the previous session. However, if in between I open private browsing, it for some reason overwrides the session restore history with nothing. Can I somehow a) restore the session afterwards? b) prevent this from happening in the future?

Asked by Sfgj Srjfs 4 hours ago

Every link opens Anti-Phishing warning

A few days ago, Firefox updated itself. Suddenly, every link opens a new tab that says "Anti-phishing Protection is scanning your link..." and the original tab opens a wi… (read more)

A few days ago, Firefox updated itself. Suddenly, every link opens a new tab that says "Anti-phishing Protection is scanning your link..." and the original tab opens a window that says "Anti-phishing Protection - You are attempting to open an insecure link. Are you sure you want to proceed?"

I cannot find anywhere to turn this off or fix this ridiculous situation?

Asked by info9965 5 hours ago

Last reply by zeroknight 4 hours ago

Problem with Google Play Books

I just updated Firefox today and now google play books won't open. I deleted the book and readded it and deleted my cookies and retried but still no joy. All I get is the… (read more)

I just updated Firefox today and now google play books won't open. I deleted the book and readded it and deleted my cookies and retried but still no joy. All I get is the message "Can't open this book. Try again later" and then the option to either Get Help or just OK.

Asked by Hells Belle 4 hours ago

Last reply by zeroknight 4 hours ago

Apparent duplicate password manager

I use Firefox and ESET Antivirus on Windows 10 I am using the Firefox password manager with a Primary Password. When I open a window to a bank or other sensitive site ESE… (read more)

I use Firefox and ESET Antivirus on Windows 10 I am using the Firefox password manager with a Primary Password. When I open a window to a bank or other sensitive site ESET Antivirus Banking and Payment Protection automatically opens a new Protected window. The password manager then fills in the login details for the site or offers a choice from a listbox if I have more than one login for that site without me having to provide a password for the password manager. Clicking on "View Saved Logins" from the listbox opens the password manager Search Logins window also without me having to enter a Primary Password. I can now view Usernames AND Passwords without having to enter any Primary Password. This appears to be an out of date copy of the passwords in a unprotected file since it is missing a few recently created entries. When using an standard Firefox browser window everything seems to work as expected with the Primary Password being required to activate the Pasword Manager and the recently created entries are present. One other point which may be relevant is that when viewing the same username/password in both the valid and the duplicate versions the window addresses are identical. This suggests to me that the Password Manager keeps the username/password data and a list of that data as separate enties and that what I have is actually one set of data with two seperate lists of the data. This makes me nervous about trying to delete anything from the unprotected list in case I am deleting the original data. This state of affairs may have come about when I was setting up Firefox Sync and inadvertantly Sync-ed Password Manager with Primary Password turned off. I have since turned off Sync but with no effect on th problem. Is there any way of deleting this apparent additional password list? The alternative seems to be to just uninstall Firefox and ESET Antivirus and re-install and hope that all the data is cleared out in the process and the re-import a password file.

Asked by mike2000 4 hours ago

translate beta

Hello, today my Firefox offered me to try the "Translate this page" beta function within the browser. I agreed but now want to disable/delete this option and don't know … (read more)

Hello, today my Firefox offered me to try the "Translate this page" beta function within the browser. I agreed but now want to disable/delete this option and don't know how. I can uncheck the option to always translate the page in the menu settings after clicking on the icon in the bar. But I don't see an option to delete this add-on (it's not listed in the add-on section either). How can I get rid of it? Best, Manu

Firefox Version 118.0 (64-Bit), Windows 10

Asked by manuel-steitz 6 hours ago

Last reply by TyDraniu 4 hours ago