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, … (閱讀更多)

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

OMVW 於 15 小時前 詢問

cor-el 最近回覆於 1 分鐘前

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… (閱讀更多)

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

j.sobiech 於 2 小時前 詢問

jscher2000 - Support Volunteer 最近回覆於 2 小時前

Major complaint by many! Can the Firefox code writers fix this?

With the latest version of Firefox the menu, etc. have a font size that is TOO SMALL. There are many Mozilla posts about this problem. https://support.mozilla.org/bm/qu… (閱讀更多)

With the latest version of Firefox the menu, etc. have a font size that is TOO SMALL. There are many Mozilla posts about this problem.

https://support.mozilla.org/bm/questions/1260063 https://support.mozilla.org/mk/questions/1395315 https://support.mozilla.org/en-US/questions/1274586 https://support.mozilla.org/bm/questions/1268779

My wife cannot read them. I can barely read them. If this is not fixed soon, we will switch to another browser.

Can the Firefox code writers fix this?

bhs67 於 5 小時前 詢問

bhs67 最近回覆於 4 小時前

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 … (閱讀更多)

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.

Dean 於 50 分鐘前 詢問

TyDraniu 最近回覆於 23 分鐘前

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… (閱讀更多)

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?

beth.woodworth1 於 3 小時前 詢問

jscher2000 - Support Volunteer 最近回覆於 33 分鐘前

MEXC Referans Kodu: mexc-rb

MEXC Referans Kodu: mexc-rb Olarak Kullanilir. Dünyada en çok kullanılan, ömür boyu geçerli, en yüksek indirim oranına sahip MEXC referans kodudur. MEXC borsasına kayıt … (閱讀更多)

MEXC Referans Kodu: mexc-rb Olarak Kullanilir. Dünyada en çok kullanılan, ömür boyu geçerli, en yüksek indirim oranına sahip MEXC referans kodudur.

MEXC borsasına kayıt olurken Davet Kodu yazan yere mexc-rb yazınız. Alacağınız komisyon indirimi % 100'dür. Ayrıca 1000$ USDT futures bonusu alacaksınız.

MEXC referans koduyla ilgili daha fazla bilgi: • MEXC Referans Kodu: mexc-rb - Wikipedia: [https://fr.wikipedia.org/wiki/MEXC_Referans_Kodu:_mexc-rb] • MEXC %100 Referans Kodu: mexc-rb. Bu konuda görme engelli ve görme... | by R.B. Visually Imparied | Mar, 2024 | Medium: [https://medium.com/@rb.visuallyimpari.../mexc-100-referans-kodu-mexc-rb-d192bc2206ae] • [https://www.amazon.com/MEXC-Referans-.../B0CT1XP5DB] • MEXC Referans Kodu- Archieve.org: [https://archive.org/details/mexc-referans-kodu-davet-kodu] • MEXC Referans Kodu MEXC Davet Kodu - StartupCentrum: [https://startupcentrum.com/tr/girisim/mexc-referans-kodu-mexc-davet-kodu] • MEXC Referans Kodu: mexc-rb - DergiPark Akademik: [https://dergipark.org.tr/tr/pub/@mexc-referans-kodu-mexc-davet-kodu]

Zeynep 於 45 分鐘前 詢問

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… (閱讀更多)

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

amassey1 於 6 小時前 詢問

cor-el 最近回覆於 57 分鐘前

Bad/Rogue Current Session of Firefox (Windows 7) Redux

Sorry, posted recently and had then trouble finding out how to respond to help offered (jscher2000)! Noticed that the email version was "no-reply" so I didn't figure that… (閱讀更多)

Sorry, posted recently and had then trouble finding out how to respond to help offered (jscher2000)! Noticed that the email version was "no-reply" so I didn't figure that would work! So, I tried to 'cut and paste' my reply (on a smartphone) and I ended up losing even the email reply text so here is a reconstruction. I tried the suggestions in order and the first one didn't have a "Restore previous session" option and the second one had "Recently closed windows" greyed out! And, when I entered "about.support" in the address bar (top rightish), I received a notice that I couldn't reach Google (Remember that I don't currently have internet access on my laptop). So, no joy there either! Can I not just change some current setting to prevent Firefox v 115.9lesr from saving the current 'Windows' and Tabs so that, when I again open Firefox, the previous session 'Windows' and Tabs would be used?!?

balls69bc 於 57 分鐘前 詢問

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… (閱讀更多)

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?

aurel_dimaculangan 於 3 小時前 詢問

cor-el 最近回覆於 59 分鐘前

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… (閱讀更多)

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)

ballakoala 於 7 小時前 詢問

cor-el 最近回覆於 1 小時前

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… (閱讀更多)

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.

wpmgprostotema 於 8 小時前 詢問

cor-el 最近回覆於 1 小時前

My bookmarks and history are gone.

I get the following message when going online with Firefox: "The bookmarks and history system will not be functional because one of Firefox's files is in use by another a… (閱讀更多)

I get the following message when going online with Firefox: "The bookmarks and history system will not be functional because one of Firefox's files is in use by another application. Some security software can cause this problem." I've followed all the prompts to restart the computer, refresh the computer, delete the favicons.sqlite and places.sqlite and it won't allow me to delete them. This happened yesterday as well. Yesterday I could delete those files and everything was restored. But today I can't get it to work.

Lana Patterson 於 1 小時前 詢問

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… (閱讀更多)

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.

maxjen 於 6 小時前 詢問

cor-el 最近回覆於 1 小時前

How to return to previously viewed tab when I close a tab, without extensions.

Others asked and were pointed to extensions. As long as extensions get access to my pages, I'm not willing to use any. So, is there an option in advanced settings, to ret… (閱讀更多)

Others asked and were pointed to extensions. As long as extensions get access to my pages, I'm not willing to use any. So, is there an option in advanced settings, to return to previously viewed tab when I close a tab? Thanks, Cat

CatFox 於 3 小時前 詢問

cor-el 最近回覆於 1 小時前

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… (閱讀更多)

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?

Hamza Shareef 於 3 小時前 詢問

jscher2000 - Support Volunteer 最近回覆於 2 小時前

'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 … (閱讀更多)

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!!!

balls69bc 於 2 小時前 詢問

jscher2000 - Support Volunteer 最近回覆於 2 小時前

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… (閱讀更多)

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?

nathanbee354 於 5 個月前 詢問

the_logic_master 最近回覆於 2 小時前