Deleted passwords are being restored

I have 3 computers (2 desktops, 1 laptop). I want to permanently delete approx 300 unused/unneeded passwords. I deleted them from computer #1, then logged out of Firefox… (xem thêm)

I have 3 computers (2 desktops, 1 laptop). I want to permanently delete approx 300 unused/unneeded passwords. I deleted them from computer #1, then logged out of Firefox. The new count was 346 passwords.

I went to the second computer, deleted approx the same number from computer #2. The new count was 324 passwords I returned to computer # 1 and logged back into Firefox.

Within a short time, computer #1 is at 759 passwords, and computer 2 is at 691 passwords.

How do I get the deletions to be permanent? It's the second pass at doing this and I'm FRUSTRATED.

Được hỏi bởi Steve Katz 10 giờ trước

Lần cuối trả lời bởi cor-el 1 giờ trước

My history only goes back to January 19, 2023

I was looking for an item that would be a couple of years back in my history, only to discover that my history now only goes back a year and 3 months… Exactly, as of toda… (xem thêm)

I was looking for an item that would be a couple of years back in my history, only to discover that my history now only goes back a year and 3 months… Exactly, as of today, I don't know if that's meaningful. Does anyone have any idea what might've happened, and how I can restore the rest of my history? Thank you!

I'm on a Mac using Mojave, with Firefox version 115.8.

Được hỏi bởi Lisa Smith 5 ngày trước

Lần cuối trả lời bởi cor-el 1 giờ trước

Can't close a tab or a separate window without closing Firefox, and only then I need taskmgr

My Firefox can only be shut down by TaskManager, or by clicking on the three horizontal bars and then dropping to exit. So I can't close any single tab 'without closing … (xem thêm)

My Firefox can only be shut down by TaskManager, or by clicking on the three horizontal bars and then dropping to exit.

So I can't close any single tab 'without closing them all', that's the real annoyance. I also can't close any individual windows I opened instead of a new tab, without closing all tabs and windows. Finally the classic windows ALT+F4 closure that's built into Windows doesn't close Firefox, and if it did I suspect ALT+F4 would close them all. Bottom line Firefox is seriously close-resistant.

What precipitated this was I allowed a previous Firefox update to download-install, and it tanked my performance, I figured your team would fix that issue, but in the meantime what I did was uninstall that version and reinstall the version I had been running before that update. Tilt! That action resulted in the close windows or tabs problem.

Summary: I am using the latest version now, but with it came this "can't close any individual tab without closing them all, and can only close even then except by Taskmanager or by clicking the 3 horizontal bars then dropping to Exit which also closes all Firefox tabs and Windows. This problem has surfaced before in this support, and none of the solutions worked, probably because I got to this place uniquely. I did read before submitting this.

Được hỏi bởi Dean 2 giờ trước

Lần cuối trả lời bởi cor-el 1 giờ trước

Connection failed ("Seiten-Ladefehler")

Hello everyone, since my last update (125.0.2 (64-bit)), an additional website always opens when I open a website in Firefox. This is called "Page load error" in the tab… (xem thêm)

Hello everyone,

since my last update (125.0.2 (64-bit)), an additional website always opens when I open a website in Firefox. This is called "Page load error" in the tab; the content of the page is as follows:

Error: Connection failed

An error occurred while connecting to 0.0.0.1.

   The website may be temporarily unavailable, please try again later.
   If you are also unable to access another website, please check the network/Internet connection.
   If your computer or network is protected by a firewall or proxy, please make sure that Firefox is allowed to access the Internet.

How can I prevent this additional page from opening?

Thank you in advance for your help!

Greetings from Maria

Được hỏi bởi maria.kageneck 11 giờ trước

Lần cuối trả lời bởi cor-el 1 giờ trước

recover passwords file

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, … (xem thêm)

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

Được hỏi bởi OMVW 17 giờ trước

Lần cuối trả lời bởi cor-el 1 giờ trước

I want to write an addon firewall but it fails

#!/bin/bash # Verzeichnis erstellen mkdir FoxyAddOnFirewall cd FoxyAddOnFirewall || exit # package.json erstellen cat <<EOF > package.json { "title": "Foxy A… (xem thêm)

#!/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."

Được hỏi bởi j.sobiech 4 giờ trước

Lần cuối trả lời bởi jscher2000 - Support Volunteer 4 giờ trước

message said Firefox could not update automatically, requested I install Firefox. I did. Next day, same thing, can't update, intall Firefox. And again today. I don't know what to do.

I have two desktop icons for Firefox. Each opens to a different file. How do I clear the old file? What do I do about the message that Firefox can not update automatical… (xem thêm)

I have two desktop icons for Firefox. Each opens to a different file. How do I clear the old file? What do I do about the message that Firefox can not update automatically? Where do I look to see Firefox file and see what date it is downloaded? If it is operational? Why is the same series of problems repeating daily?

Được hỏi bởi beth.woodworth1 4 giờ trước

Lần cuối trả lời bởi jscher2000 - Support Volunteer 2 giờ trước

FireFox - User does not have privileges to save a file.

I have two end users that are having a different issues but they are of similar nature. First user can not upload anything to Microsoft Share point. She gets a message th… (xem thêm)

I have two end users that are having a different issues but they are of similar nature. First user can not upload anything to Microsoft Share point. She gets a message that says she does not have proper permissions to upload. She does not have the same issue on Chrome or Edge. The second user is trying to download and or save a file from a couple of different websites but regardless on where she tries to save it on her computer it says she does not have proper permissions to save to "x" file location. She also does not have this issue when she is on Chrome or Edge.

For both users I have tried clearing cache and cookies, Rebooting their computers, uninstalling and reinstalling Firefox, deleting registry keys/user data from the computer itself. I have had no luck with resolving this issue and I can not find anything online that remotely resembles this issue.

Thank you and please advise

Được hỏi bởi amassey1 8 giờ trước

Lần cuối trả lời bởi cor-el 2 giờ trước

Group Policy Settings list with description

Hi, I would like to implement GPO settings for Firefox, and would like to review the list of the policies with description (explanation of what the policy is about and w… (xem thêm)

Hi, I would like to implement GPO settings for Firefox, and would like to review the list of the policies with description (explanation of what the policy is about and what happens if its enabled or disabled) on a table or excel format. Is there a site or page that will give me that list?

Được hỏi bởi aurel_dimaculangan 4 giờ trước

Lần cuối trả lời bởi cor-el 2 giờ trước

Save one autofill entry for usernames across all sites?

I have a unique annoyance wherein I use a considerably long email address for many sites. I've gotten tired of typing it out whenever it comes up and wish for it to be pr… (xem thêm)

I have a unique annoyance wherein I use a considerably long email address for many sites. I've gotten tired of typing it out whenever it comes up and wish for it to be preserved as an autofill across all sites so I no longer have to, similar to how your phone may suggest your email address in autocomplete.

Unfortunately, as far as I can tell, you can only manually add autofills for specific sites and with password attached. So my question is, is there a way to make the address be a suggested autofill on username/email address boxes across all sites?

(not interested in having form history saved, just want this one specific form entry)

Được hỏi bởi ballakoala 9 giờ trước

Lần cuối trả lời bởi cor-el 2 giờ trước

How to disable immediate search when you type in the Find Bar?

It is annoying that search executes immediately instead of triggering on enter keypress, especially when a web page is big. Is there any way to disable auto-search and tr… (xem thêm)

It is annoying that search executes immediately instead of triggering on enter keypress, especially when a web page is big. Is there any way to disable auto-search and trigger it only when you press enter?

If you want to understand better it's pretty similar to this VS Code issue.

Được hỏi bởi wpmgprostotema 9 giờ trước

Lần cuối trả lời bởi cor-el 3 giờ trước

Microsoft Windows 11 user - font size for display resolution 3456 x 2160

I have to put my face within inches of the screen and strain to see the text in Firefox browser menus, tabs, and search bars. How do I adjust the font size? I'm not a p… (xem thêm)

I have to put my face within inches of the screen and strain to see the text in Firefox browser menus, tabs, and search bars. How do I adjust the font size?

I'm not a programmer. If I need to enter code please be pedantic about descriptions of how to do that.

Được hỏi bởi maxjen 8 giờ trước

Lần cuối trả lời bởi cor-el 3 giờ trước

Why I can't take screenshot?

I am writing to report an issue I have encountered while using the Firefox browser. Specifically, I am unable to take screenshots on the website https://hescoebill.pk/hes… (xem thêm)

I am writing to report an issue I have encountered while using the Firefox browser. Specifically, I am unable to take screenshots on the website https://hescoebill.pk/hesco-mis/. This issue persists despite numerous attempts, and it seems to be unique to this particular website. Is there any other way to take screenshot of site? I really want to take a screenshot for personal reason. Is it not allowed from the site owner side or what?

Được hỏi bởi Hamza Shareef 5 giờ trước

Lần cuối trả lời bởi jscher2000 - Support Volunteer 3 giờ trước

'Bad' Current Session of Firefox (Windows)!

I currently have a 'bad/rouge' session of Windows 7 Firefox (don't really know how that happened) open (7 'Windows', each with one empty Tab plus 1 'Window', with only 1 … (xem thêm)

I currently have a 'bad/rouge' session of Windows 7 Firefox (don't really know how that happened) open (7 'Windows', each with one empty Tab plus 1 'Window', with only 1 populated tab (Yahoo Mail)! I need to close Firefox in order to restart my laptop (strange things have been happening, including not being able to access the internet)!! On restarting, I want to be able to open Firefox with the previous session I had with my 8 'Windows', each with dozens and dozens of Tabs! Please help, I sorely need those many 'Windows' and Tabs!!!

Được hỏi bởi balls69bc 4 giờ trước

Lần cuối trả lời bởi jscher2000 - Support Volunteer 4 giờ trước

Firefox closing at random with no crash report

Yesterday Firefox started closing at random, sometimes instantly as soon as I open it. The crash dialog doesn't open, and if I go to about:crashes my most recent unreport… (xem thêm)

Yesterday Firefox started closing at random, sometimes instantly as soon as I open it. The crash dialog doesn't open, and if I go to about:crashes my most recent unreported crash is from 2019. Tried refreshing, reinstalling, completely wiping all profiles and starting fresh. If I use troubleshooting mode it won't open properly at all. I am at a bit of a loss, any ideas?

Được hỏi bởi nathanbee354 5 tháng trước

Lần cuối trả lời bởi the_logic_master 4 giờ trước

PDF loading is very slow

I am using Firefox v125.0.2. When I open a PDF in Firefox it takes a lot of time to load. But, when the same PDF opened in the Edge browser it loads normally and scrollin… (xem thêm)

I am using Firefox v125.0.2. When I open a PDF in Firefox it takes a lot of time to load. But, when the same PDF opened in the Edge browser it loads normally and scrolling through PDF pages renders fast. I have shared the screenshot of a single-page pdf loading taking quite a long time.

Could someone please help me with this.

Được hỏi bởi avisekn 15 giờ trước

Lần cuối trả lời bởi TyDraniu 5 giờ trước

Firefox freezes after VPN status change

Whenever I change my VPN (not Mozilla VPN) status, Firefox will refuse to connect for something like 30 seconds then times out, leaving me with a blank screen. I have wai… (xem thêm)

Whenever I change my VPN (not Mozilla VPN) status, Firefox will refuse to connect for something like 30 seconds then times out, leaving me with a blank screen. I have wait until that interval has passed before I can retry, otherwise it will repeat the freeze. This happens whenever I turn my VPN on/off or switch to a different VPN server. It happens only with Firefox. Chrome and my email client have no problems whatsoever. I think it's some kind of DNS caching problem within Firefox as the problem doesn't happen if I visit a site that I hadn't visited very recently. There's immediate response if I do that. I have DNS over HTTPS and secure DNS turned off in the settings, so it can't be those.

Anyone else have this problem? I wish there was some way to clear Firefox's DNS cache other than having to go into about:networking

Được hỏi bởi Parallax 4 tháng trước

Lần cuối trả lời bởi namnoops 5 giờ trước