reCAPTCHA always blocked
reCAPTCHA failed. Please try again and/or turn off browser privacy settings that may be blocking reCAPTCHA.
How do I keep Firefox from blocking reCAPTCHA?
reCAPTCHA failed. Please try again and/or turn off browser privacy settings that may be blocking reCAPTCHA.
How do I keep Firefox from blocking reCAPTCHA?
Why is firefox not showing up in my authenticator app??? I saw a previous post that has since been closed suggesting the solution be disabling 2FA authentication - with … (read more)
Why is firefox not showing up in my authenticator app???
I saw a previous post that has since been closed suggesting the solution be disabling 2FA authentication - with all due respect to whoever suggested that, I don't think that should be the best solution. I'd like to keep 2FA enabled. I'd just like to know why Firefox doesn't appear in my Google or Microsoft Authenticator apps. I end up having to use recovery codes which makes the process a pain.
Where exactly do I find if any ad blockers are enabled?
I keep getting pop ups warning me that Firefox is infected with viruses and I need to download and pay for a McAfee security program. How do I stop the pop ups? My com… (read more)
I keep getting pop ups warning me that Firefox is infected with viruses and I need to download and pay for a McAfee security program. How do I stop the pop ups? My computer's protection does not indicate a problem. Can Firefox be infected?
So Mozilla supports privacy rights- and I've supported Mozilla for that reason- but they want Whatsapp to be censored for "misinformation" ? How does that go togeth… (read more)
So Mozilla supports privacy rights- and I've supported Mozilla for that reason- but they want Whatsapp to be censored for "misinformation" ? How does that go together? Whatsapp was supposed to be encrypted and not even Whatsapp was supposed to know the content of messages. How would they know about misinformation? And how do they get to decide what's misinformation now?
My firefox browser is controlled by an organization and I don't beong to an organization. I can't delete certificates that have authorization to change, block, reroute, … (read more)
My firefox browser is controlled by an organization and I don't beong to an organization.
I can't delete certificates that have authorization to change, block, reroute, access my computer hard drive, you name it. Certificates that I do remove immediately reappear.
The authority certificates are from China, Russia, and many untrustworthy locations.
It happens in Firefox focus on my Android, Firefox on my computer and it appears the spyware has access to my hard drive and phone.
How do I fix this, and can you remove this organizarion from controlling my browser?
Thank you,
Elizabeth Kiggen
Hello. In the last few days when I visit my Shopify website, the pricing on my products is not visible. This is only for me, nobody else has this issue. I do not have thi… (read more)
Hello. In the last few days when I visit my Shopify website, the pricing on my products is not visible. This is only for me, nobody else has this issue. I do not have this issue on Safari, or on Firefox when I open a private browsing window. It is something to do with Firefox, but I don't want to have to open a private window every time I go to my store. Is there a solution? This has only been happening for the last few days. Thanks
How do I anable javascript on my mac
Does FF Mozilla have extensions and plug-ins for Android?
bold text
I want to use the Advanced Preferences (about:config) to select 'Manual proxy configuration' setting. I have been able to set the HTTP Proxy and associated port but I am… (read more)
I want to use the Advanced Preferences (about:config) to select 'Manual proxy configuration' setting. I have been able to set the HTTP Proxy and associated port but I am unable to find the setting in Advanced Preferences that will select Manual proxy configuration. Could someone please help. Thanks
Why do I get what is shown in the image when using: https://www.msn.com/en-us which is a secure url?
I have a NAS server, where I save all my data. When I type the local address 192.168.2.10:5001 I always get the warning That this is a malicious site. I havo enter I know… (read more)
I have a NAS server, where I save all my data. When I type the local address 192.168.2.10:5001 I always get the warning That this is a malicious site. I havo enter I know the risk etc. which cost me time and is useless, since my NAS server is under my control.
I have tried to put the server address in several exceptions, but they disappear.
How to tell Firefox that my Nas srver is safe?
Hi, i locked my pc few days ago due to smart windows not recognizing my ( correct password ) repeatedly. anyway, im still trying to find a way to solve this issue. now, … (read more)
Hi, i locked my pc few days ago due to smart windows not recognizing my ( correct password ) repeatedly. anyway, im still trying to find a way to solve this issue.
now, i created an admin windows account get access to my old user files, found the bookmarks file. the only thing left for me now is the passwords file.i did not a Firefox online account before today
the only way currently if i did not solve the wind10 login issue is the find the passwords file physically just like i did with the bookmarks file.
can anyone help with this ??
thanks
#!/bin/bash # Verzeichnis erstellen mkdir FoxyAddOnFirewall cd FoxyAddOnFirewall || exit # package.json erstellen cat <<EOF > package.json { "title": "Foxy A… (read more)
#!/bin/bash # Verzeichnis erstellen mkdir FoxyAddOnFirewall cd FoxyAddOnFirewall || exit # package.json erstellen cat <<EOF > package.json { "title": "Foxy AddOn Firewall", "name": "foxy-addon-firewall", "description": "A Firefox addon to control internet access for other addons", "author": "Your Name", "version": "1.0.0", "license": "MIT" } EOF # background.js erstellen cat <<EOF > background.js var permissionManager = Components.classes["@mozilla.org/permissionmanager;1"] .getService(Components.interfaces.nsIPermissionManager); // Addon-Liste abrufen function getAllAddons() { var {AddonManager} = Components.utils.import("resource://gre/modules/AddonManager.jsm", {}); return new Promise(function(resolve, reject) { AddonManager.getAllAddons(function(addons) { resolve(addons); }); }); } // GUI aktualisieren function updateUI() { getAllAddons().then(function(addons) { var addonList = document.getElementById("addon-list"); addonList.innerHTML = ""; // Zurücksetzen der Liste addons.forEach(function(addon) { var listItem = document.createElement("li"); listItem.textContent = addon.name; var blockButton = document.createElement("button"); blockButton.textContent = "Block"; blockButton.addEventListener("click", function() { blockInternetAccessForAddon(addon); }); listItem.appendChild(blockButton); addonList.appendChild(listItem); }); }); } // Internetzugriff für ein bestimmtes Addon blockieren function blockInternetAccessForAddon(addon) { var host = addon.getResourceURI("").host; permissionManager.remove(host, "allAccess"); console.log("Internetzugriff für " + addon.name + " wurde blockiert."); } document.addEventListener("DOMContentLoaded", function() { updateUI(); // GUI beim Laden der Seite aktualisieren }); EOF # index.html erstellen cat <<EOF > index.html <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>Foxy AddOn Firewall</title> <link rel="stylesheet" href="style.css"> </head> <body> <h1>Foxy AddOn Firewall</h1> <p>Welcome to Foxy AddOn Firewall!</p> <h2>Installed Addons:</h2> <ul id="addon-list"> <!-- Addon-Liste wird hier eingefügt --> </ul> <script src="background.js"></script> </body> </html> EOF # style.css erstellen cat <<EOF > style.css body { font-family: Arial, sans-serif; background-color: #f0f0f0; text-align: center; } h1 { color: #007bff; } h2 { margin-top: 20px; } ul { list-style-type: none; padding: 0; } li { margin-bottom: 10px; } button { background-color: #007bff; color: white; border: none; padding: 5px 10px; border-radius: 5px; cursor: pointer; } button:hover { background-color: #0056b3; } EOF # manifest.json erstellen cat <<EOF > manifest.json { "manifest_version": 2, "name": "Foxy AddOn Firewall", "version": "1.0", "description": "A Firefox addon to control internet access for other addons", "icons": { "48": "icon.png" }, "permissions": [ "management" ], "browser_action": { "default_popup": "index.html", "default_icon": "icon.png" } } EOF # Icon herunterladen wget -O icon.png "https://img.icons8.com/ios-filled/50/000000/firewall.png" # Installationsanweisungen anzeigen echo "FoxyAddOnFirewall wurde erfolgreich initialisiert!" echo "Um das Addon in Firefox zu installieren:" echo "1. Öffnen Sie Firefox und geben Sie 'about:debugging' in die Adressleiste ein." echo "2. Klicken Sie auf 'Dieses Firefox installieren' unter 'Temporäre Add-ons laden'." echo "3. Navigieren Sie zum Verzeichnis 'FoxyAddOnFirewall' und wählen Sie die 'manifest.json' Datei aus." echo "4. Das Addon wird nun installiert und kann verwendet werden."
I had issues login to my Firefox account, so I reset my password, which cleared my data with passwords and bookmarks. I later found where I stored my recovery key and wan… (read more)
I had issues login to my Firefox account, so I reset my password, which cleared my data with passwords and bookmarks. I later found where I stored my recovery key and wanted to see if I can recover that data again.
While this is a Privacy and Security setting issue - at least tangentially - my question isn't about security so much as how this data is being stored/retrieved. I navig… (read more)
While this is a Privacy and Security setting issue - at least tangentially - my question isn't about security so much as how this data is being stored/retrieved.
I navigated to an entirely new site the other day and it requested a username and password. When the cursor was in the Username field, a set of proposed entries showed up. These were all (recognizable) first names - not emails. When I checked the Privacy and Security settings, I couldn't find any of the names in stored data. While this may be just cached entries for similar fields ("username" or "name" etc...), the list I saw was heavily curated. One of the names I don't ever recall even entering in any name field (and wouldn't have been used for any login) - but even if I had, the list that I saw was far from exhaustive and would only have been a very specific subset of any data I would have entered into any "name" or "username" field.
Is there somewhere I can find how that list was generated?
Thank you,
Hello, I like using Firefox browser every day. After installing and running Avast antivirus protection (program version : 24.3.6108 (build 24.3.8975.832)), Avast no… (read more)
Hello,
I like using Firefox browser every day. After installing and running Avast antivirus protection (program version : 24.3.6108 (build 24.3.8975.832)), Avast notification always show this message every time I start up Firefox : please check the uploaded images : FPA Scam.jpg.
I already checked the extenstion, the Settings, and the Advance Settings of Firefox browser. I'd like to know if there is any parameter related to engine.forexpeacearmy.com and it is enabled. Unfortunately, I can't found any related parameters.
So, I decide to contact Firefox support to find out what happen to my Firefox browser, why it always call the forexpeacearmy site at the start up, and finally I want to remove it. Because I'm affraid it could be some kind of trojans / malwares and put my laptop into risks.
Kindly need your advise. Thank you.
Kind regards, Gideon
Hello, One of my email accounts Yahoo or Gmail appears to have been hacked. I received two phishing emails this week --3 if you count the last one who said she was call… (read more)
Hello,
One of my email accounts Yahoo or Gmail appears to have been hacked. I received two phishing emails this week --3 if you count the last one who said she was calling on behalf of Medicare/Social Security and All members could get a preloaded card for several hundred dollars. I knew there was a plan to help certain folks, but it was not available to everybody. I asked her for the name of the plan and she hung up. the webpage she sent me to first or told me to go there where I could talk to a licensed agent. Do people who answer the phone have a license like insurance salespeople? Anyway, they had copied the govt. the site is right up the US sea.
Okay, just an example so I decided to try that KeeopassXC program you were offering but I could never get it to complete.
but it did something as I can't use my password They cancel your account if you tell them the truth --better just to say I need help resetting my password. They then ask you to send them a picture ID as in Driver's License. Noway I am going to do this --so I have at least some pretty valuable info if I can't get in.
Ny first time writing here - if any response please direct suggestions to pke225x2gmail or I guess I will check here. Don't know how you put people with possible solutions to seeker of HELP.
Sincere Thanks Paul
This started a few weeks ago. I thought it might have been because I synced the passwords with other devices. I reverted it back. When in about:logins, I click on the l… (read more)
This started a few weeks ago. I thought it might have been because I synced the passwords with other devices. I reverted it back.
When in about:logins, I click on the log in button but nothing happens.