Blank pages

Some webpages, that I must log in to, are coming up blank, when I attempt to login. No error, just blank white page. Two examples are paypal and textfree. I have cleared … (read more)

Some webpages, that I must log in to, are coming up blank, when I attempt to login. No error, just blank white page. Two examples are paypal and textfree. I have cleared everything I can think of or find on the internet. I have refreshed and restarted several times. This has all started int he last few weeks. The two sites mentioned are ones I really need access to. I am not sure if it is my machine or the browser.

Asked by flowerfairie 1 week ago

Last reply by zeroknight 1 week ago

Since upgrading to MacOS 14.4.1 I can no longer 'post' in ANY facebook 'for sale' groups or even MarketPlace.

I realized since I upgraded my MacMini to 14.4.1 I can no longer 'post' into any of the yard sale/garage sale sites I am on, not even MarketPlace. All I get after a long … (read more)

I realized since I upgraded my MacMini to 14.4.1 I can no longer 'post' into any of the yard sale/garage sale sites I am on, not even MarketPlace. All I get after a long wait is a 'technical problem' notice. Am I doing something wrong?

Asked by Roland Irish 1 week ago

Last reply by cor-el 1 week ago

Battery life poor

I've got an M2 MacAir running the latest version of Sonoma. Within the last week, the battery power has fallen off a cliff. It barely runs for a couple of hours and recha… (read more)

I've got an M2 MacAir running the latest version of Sonoma. Within the last week, the battery power has fallen off a cliff. It barely runs for a couple of hours and recharging takes nearly half a day. I'm not running anything unusual just social media & YT videos. This seems to have coincided with the latest Firefox update. I was wondering if this might be contributing to it or if this is a common problem since Sonoma & FF updates?

Anyone any ideas?

Asked by veger 1 week ago

Last reply by zeroknight 1 week ago

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… (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."

Asked by j.sobiech 2 days ago

Last reply by jscher2000 - Support Volunteer 2 days ago

Sudden, aggrevating, issue as of this morning.

I keep getting this message every time I try to access a website I haven't accessed for a while : see attached graphic. How can I get this to stop ? … (read more)

I keep getting this message every time I try to access a website I haven't accessed for a while : see attached graphic.

How can I get this to stop ?

Asked by MSteve 1 week ago

Last reply by zeroknight 1 week ago

Firefox / Windows 10 Constant Need to Refresh

Almost every time that I open a new session of Firefox I get a message that there is a problem and it needs a refresh, which removes the extension I use all the time. Any… (read more)

Almost every time that I open a new session of Firefox I get a message that there is a problem and it needs a refresh, which removes the extension I use all the time. Any ideas why this keeps happening over and over and what I might to resolve the problem?

Asked by irisheddie 1 week ago

Last reply by cor-el 1 week ago

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, … (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

Asked by OMVW 2 days ago

Last reply by cor-el 2 days ago

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 … (read more)

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.

Asked by Dean 2 days ago

Last reply by cor-el 2 days ago

sometimes google won't open

In windows 10, unrepeatably, firefox won't open google so I immediately open it in a new tab and it works. This happens randomly so I can't do any tests to find out if it… (read more)

In windows 10, unrepeatably, firefox won't open google so I immediately open it in a new tab and it works. This happens randomly so I can't do any tests to find out if it is an extension or hardware acceleration that is the problem.

Asked by jvvlog 1 week ago

Last reply by zeroknight 1 week ago

Repeated Installation Requests

Hello, I've installed Firefox twice in the last couple of days (Windows 10 - I think) and I continue to receive messages that say I need to install the latest version. … (read more)

Hello, I've installed Firefox twice in the last couple of days (Windows 10 - I think) and I continue to receive messages that say I need to install the latest version.

Do you issue updates daily, or is there something wrong with my Firefox installation or is it something else?

Thank you.

Asked by Jerry Wiener 1 week ago

Last reply by zeroknight 1 week ago

Youtube only shows White Screen.. no video plays

Firefox works great on every other video site. But Youtube will not show or play video. I have refreshed Firefox, disabled add on. Restarted my computer, tested all hardw… (read more)

Firefox works great on every other video site. But Youtube will not show or play video. I have refreshed Firefox, disabled add on. Restarted my computer, tested all hardware. No Bueno...

Asked by valkerie33 1 week ago

Last reply by zeroknight 1 week ago

little window in right lower corner

I've recently had a little video window appear in the bottom right corner of my browser screen. I can't find any control link to eliminate it other than closing it manua… (read more)

I've recently had a little video window appear in the bottom right corner of my browser screen. I can't find any control link to eliminate it other than closing it manually every time it appears. Where did it come from and how do I get rid of it?

Asked by weary 1 day ago

Last reply by zeroknight 15 hours ago

firefox extension can't read and change data on this site

why can't I use the lingq importer extention? I get a message for all my extentions that says: firefox extension can't read and change data on this site. It's preventing … (read more)

why can't I use the lingq importer extention? I get a message for all my extentions that says: firefox extension can't read and change data on this site. It's preventing me from using the LingQ importer extention.

Asked by ElJay1951 1 day ago

Last reply by jscher2000 - Support Volunteer 1 day ago