• Locked
  • المُؤرشفة

Protected Browser.

NOT to remove personal data? Does it give you an option for personal date not to be removed?? what about all the stored password? Can one of you tell me why all of sudde… (read more)

NOT to remove personal data? Does it give you an option for personal date not to be removed?? what about all the stored password? Can one of you tell me why all of sudden I get this error COULDN'T LOAD XPCOM? can you send me a link where to reinstall new version on top of the one I have running now Thanks

Asked by me2010_us 1 year ago

Last reply by James 1 year ago

  • حُلّت
  • المُؤرشفة

Correct syntax for privacy.fingerprintingProtection.granularOverrides?

Hello, I am trying to force two or three websites to detect my timezone as UTC, even though my local system time is not UTC. I figured out how to do this with ALL sites … (read more)

Hello,

I am trying to force two or three websites to detect my timezone as UTC, even though my local system time is not UTC. I figured out how to do this with ALL sites by setting privacy.fingerprintingProtection to "true" and entering "+JSDateTimeUTC" in privacy.fingerprintingProtection.overrides in about:config.

Now according to docs, privacy.fingerprintingProtection.granularOverrides "can be used to add or remove features on a domain granular level if privacy.fingerprintingProtection is enabled," but I can't figure out how to get it working.

Any input is appreciated.

Asked by RSizington 1 year ago

Answered by jscher2000 - Support Volunteer 1 year ago

  • حُلّت
  • المُؤرشفة

Firefox Privacy Enhanced Mode inadvertently blocking OneTrust privacy software domains

We use a privacy technology vendor named OneTrust to power much of our privacy infrastructure. This morning, two websites reported Firefox users are encountering site fu… (read more)

We use a privacy technology vendor named OneTrust to power much of our privacy infrastructure.

This morning, two websites reported Firefox users are encountering site functionality problems when trying to exercise their privacy rights, such as opting out of sharing data and targeted advertising. My team investigated and was able to reproduce the reported bug.

We discovered the cause of the bug is that Firefox's Privacy Enhanced Mode is by default blocking two domains from our privacy vendor OneTrust which are critical to the functioning of our CMP (Consent Management Platform): - cookielaw.org - onetrust.com

These two domains are used solely for the essential services needed to run our privacy software. They're not used for marketing, sales, or advertising. Blocking them not only causes site functionality issues it keeps our users from being able to exercise their privacy rights.

I've attached two screenshots here showing the network calls and domains.

Can Mozilla please quickly review this bug and remove these two domains from the blocklist powering Privacy Enhanced Mode?

Asked by brandons 1 year ago

Answered by TyDraniu 1 year ago

  • حُلّت
  • المُؤرشفة

Malwarebytes keeps blocking Mozilla files that seem to originate from it's folder in my laptop as riskware

Malwarebytes keeps blocking Mozilla files that seem to originate from it's folder in my laptop as riskware. Is this something I should make exceptions for? Or is it ris… (read more)

Malwarebytes keeps blocking Mozilla files that seem to originate from it's folder in my laptop as riskware. Is this something I should make exceptions for? Or is it riskware. I'm running Win 11

Asked by Fran Turner 1 year ago

Answered by jscher2000 - Support Volunteer 1 year ago

  • حُلّت
  • المُؤرشفة

Is there a way to turn off tracking URL fragment insertion from the release notes page when clicking "What's New" in the Firefox update modal?

Is there a way to turn off tracking URL fragment insertion from the release notes page when clicking "What's New" in the Firefox update modal? When I click "What's New" … (read more)

Is there a way to turn off tracking URL fragment insertion from the release notes page when clicking "What's New" in the Firefox update modal?

When I click "What's New" in this modal (see Screenshot 1), it loads the release notes page for my current version (although it really should load the release notes page for the version it wants me to upgrade to, but that's another issue altogether), and inserts a bunch of tracking URI fragments onto the URL (see Screenshot 2).

Is there a way (in Settings, about:config, Windows Registry, etc.) to disable that fragment insertion?

Asked by Tyler 1 year ago

Answered by jscher2000 - Support Volunteer 1 year ago

  • Locked
  • المُؤرشفة

Secure Form is blocked

I regularly receive email advice (via Thunderbird) from companies to access my account with them. Two days ago I selected a link to direct me to the secure form. I note … (read more)

I regularly receive email advice (via Thunderbird) from companies to access my account with them.

Two days ago I selected a link to direct me to the secure form. I note that the exact same link has been provided to me in the past and opened. This time however I was confronted with "Invalid Address".

I was advised to copy the link into another browser; I chose "Edge" and the form opened.

I have cleared FireFox's "Recent History" but that still gives no joy.

How do I overcome this?

Is there something in a configuration file that I might edit, or a potentially corrupt Windows Registry entry?

I do not use any Windows Security depending upon Bitdefender (which has never created any issues of this nature).

Asked by brijohnnow 10 months ago

Last reply by jscher2000 - Support Volunteer 10 months ago

  • حُلّت
  • المُؤرشفة

Why Firefox labels Paypal as an unsafe site.

I've posted before but no answer as to why Firefox labels Paypal as an unsafe site. I don't know where to change settings to allow it without the warning. I've just ign… (read more)

I've posted before but no answer as to why Firefox labels Paypal as an unsafe site. I don't know where to change settings to allow it without the warning. I've just ignored the warning and continued but it is annoying.

Asked by eckuemmel 1 year ago

Answered by eckuemmel 1 year ago

  • حُلّت
  • المُؤرشفة

Firefox passwords on multiple computers

I am shipping a broken computer back to the manufacturer. I had installed Firefox on it using my Firefox account. Since I have used the Firefox password feature to store … (read more)

I am shipping a broken computer back to the manufacturer. I had installed Firefox on it using my Firefox account. Since I have used the Firefox password feature to store all my passwords, I'm concerned that someone at the manufacturer could access my passwords. (The computer refused to boot, so I was not able to scrub it prior to sending it back.) My question is this: if I change the Firefox password on my home desktop, will my passwords on the returned computer be protected?

Thanks for any help!

Tom Smith Ph. [phone# removed from public]

Asked by tasmith 3 years ago

Answered by jscher2000 - Support Volunteer 3 years ago

  • حُلّت
  • المُؤرشفة

macOS disable Firefox default browser prompt non-interactively

I am trying to configure Firefox on macOS to not prompt the user to make it the default browser. I am using the following script to create the profile and set the user p… (read more)

I am trying to configure Firefox on macOS to not prompt the user to make it the default browser.

I am using the following script to create the profile and set the user preferences after installing Firefox by copying `Firefox.app` from the downloaded DMG: ```

  1. !/bin/sh

open -a Firefox.app --args -CreateProfile default sleep 1

write_userpref() { USER=$(whoami) PROFILE=$(ls -1 "/Users/${USER}/Library/Application Support/Firefox/Profiles/" | grep -E "\.default$") cat << EOF > "/Users/${USER}/Library/Application Support/Firefox/Profiles/${PROFILE}/user.js" // mandatory comment? user_pref("app.update.auto", false); user_pref("app.update.disable_button.showUpdateHistory", false); user_pref("app.update.enabled", false); user_pref("breakpad.reportURL", ""); user_pref("browser.newtabpage.activity-stream.feeds.topsites", false); user_pref("browser.newtabpage.activity-stream.feeds.section.topstories", false); user_pref("browser.tabs.crashReporting.sendReport", false); user_pref("browser.discovery.enabled", false); user_pref("browser.defaultbrowser.notificationbar", false); user_pref("browser.shell.checkDefaultBrowser", false); user_pref("browser.shell.didSkipDefaultBrowserCheckOnFirstRun", false); user_pref("browser.shell.skipDefaultBrowserCheckOnFirstRun", true); user_pref("browser.newtabpage.enabled", false); user_pref("experiments.enabled", false); user_pref("extensions.pocket.enabled", false); user_pref("toolkit.telemetry.enabled", false); user_pref("update_notifications.enabled", false); EOF }

write_userpref

open -a Firefox.app --args -new-tab -P default "about:blank" sleep 3 osascript -e 'quit app "Firefox"' sleep 2

open -a Firefox.app --args -P default about:blank ```

Here's the behaviour I'm seeing:

  1. Firefox starts to an `about:blank` tab, however there is a second "Firefox Privacy Notice" tab
  2. AppleScript quits Firefox
  3. Firefox starts to an `about:blank` tab, however it is now prompting me to make it the default browser

I do not want Firefox to prompt the user to become the default browser.

My ideal scenario is that Firefox starts without the "Firefox Privacy Notice" tab and without prompting me to make it the default browser. From the observed behaviour, this doesn't seem possible.

Can anyone tell me how I can accomplish this without user interaction or MDM?

Asked by hal.martin 1 year ago

Answered by hal.martin 1 year ago

  • حُلّت
  • المُؤرشفة

Persistent data keeps dissapearing

Hi, I want a website (Protonmail, my email client) to store persistent data. I have enabled it, but I also have all my browser security settings on Strict (also clearing … (read more)

Hi, I want a website (Protonmail, my email client) to store persistent data. I have enabled it, but I also have all my browser security settings on Strict (also clearing browse data and cookies on each closing of the browser), so now when I have downloaded the data and I close and reopen my browser: it's all gone. I tried looking at making Protonmail an Exception, but that's only possible in relation to Tracking Protection. How to fix this?

Thank you in advance,

Kind regards,

Asked by siardnicolai 8 months ago

Answered by jscher2000 - Support Volunteer 8 months ago

  • حُلّت
  • Locked
  • المُؤرشفة

Still getting Newsletter Emails after unsubscribing

I have unsubscribed from all newsletter after receiving the first email but days later I'm still getting emails from Firefox (e.g. Superpower #4: See if your info has bee… (read more)

I have unsubscribed from all newsletter after receiving the first email but days later I'm still getting emails from Firefox (e.g. Superpower #4: See if your info has been leaked).

This is an incredibly bad user experience and to my knowledge illegal in the EU.

I'm probably still within that journey but the journey should terminate the moment I clicked unsubscribed.

Asked by SuMo Bot 3 years ago

Answered by Chris 3 years ago

  • حُلّت
  • المُؤرشفة

How do I receive audible notifications on on my Macbook Pro of a new substitute teaching job offer from Frontline Education.com?

Currently I must sign on to Frontline Education to see if there are any new substitute teaching job offers available 24/7. I would like to receive audible notifications … (read more)

Currently I must sign on to Frontline Education to see if there are any new substitute teaching job offers available 24/7. I would like to receive audible notifications on my Macbook Pro or Apple ipad or Apple iphone to alert me to a new job offer so that I can then go to my device and look at the job offer. Thank you. John Marshall

Asked by jhmarshall 7 years ago

Answered by Murphy 7 years ago

  • حُلّت
  • المُؤرشفة

No option for autofilling credit cards in Privacy & Security settings.

I've been trying to add my credit card to my account on Firefox but I cant seem to find a setting for autofilling in settings. I've looked at the forum but cant find the … (read more)

I've been trying to add my credit card to my account on Firefox but I cant seem to find a setting for autofilling in settings. I've looked at the forum but cant find the "Autofill credit cards" checkbox.

Am I missing something here? I have attached screenshots of what I see in my settings section.

Asked by Brion 1 year ago

Answered by cor-el 1 year ago

  • حُلّت
  • المُؤرشفة

refresh/reload feature needs to be changed

Lately I've had to reload/refresh pages more frequently because of download issues. In order to the in FF I need to press the F5 key. To do the same thing in either Edge … (read more)

Lately I've had to reload/refresh pages more frequently because of download issues. In order to the in FF I need to press the F5 key. To do the same thing in either Edge or Chrome all I need to do is right click and a little popup screen shows me the reload/refresh right there. Much more convenient to use. FF should use a similar technique.

Asked by arejfour 1 year ago

Answered by TyDraniu 1 year ago

  • حُلّت
  • المُؤرشفة

trr domains

Hi, I would like to know which version of Mozilla used this setting of network.trr.excluded-domains: 'sbl-xbl[.]spamhaus[.]org, localhost.that.never.exists'. The default … (read more)

Hi, I would like to know which version of Mozilla used this setting of network.trr.excluded-domains: 'sbl-xbl[.]spamhaus[.]org, localhost.that.never.exists'. The default is 'undefined' as I checked in 127.0.1 and the older 124. I also contacted support of extensions that I used, no evidence of both excluded domains. Can anyone help me? Thanks a lot \!o!/

Asked by \!o!/ 1 year ago

Answered by cor-el 1 year ago

  • حُلّت
  • المُؤرشفة

Still requesting password for Gmail, even after exceptions

We have set up exceptions for mail.google.com and accounts.google.com in Settings. Yet, Gmail is still asking for passwords to log in and saving them. I thought I had do… (read more)

We have set up exceptions for mail.google.com and accounts.google.com in Settings. Yet, Gmail is still asking for passwords to log in and saving them. I thought I had done all it would take to have Gmail remember them. Am I missing something?

Also, we cleared cache.

Thank you, Meg

Asked by bifrostfarms1 2 years ago

Answered by Terry 2 years ago

  • حُلّت
  • المُؤرشفة

Security Concerns: Saved forms (across VMs) and password (after clearing all history).

v155.9.1esr Debian 12 I'm testing different Debian 12 on multiple VMs, it came to my surprise to see that my VPN hash I used on a website the day before was saved by Fir… (read more)

v155.9.1esr Debian 12

I'm testing different Debian 12 on multiple VMs, it came to my surprise to see that my VPN hash I used on a website the day before was saved by Firefox on the new VM.

The Sync was on but then which one saved my form (hash)?

  1. Numbered list item Logins & Passwords ? note: The hash was not a login but a form. If Firefox saves all the form, you should explicitly rename Logins by any forms/inputs.
  2. Numbered list item History? note: I hope this is only URLs.

If Firefox is savings "forms" (input fields) not just "logins" then it should be explicitly written. Is it an expected behavior?

Asked by debvmtesting 1 year ago

Answered by cor-el 1 year ago