Firefox Debian significantly slower page loads than Chromium Debian

Hello, have been scratching my head for a while on this one. Have a freshly setup install of Debian 12, using Sway (wayland) as my Window Manager. I am really struggling … (read more)

Hello, have been scratching my head for a while on this one. Have a freshly setup install of Debian 12, using Sway (wayland) as my Window Manager. I am really struggling with slowness in Firefox, page loads take easily 15 seconds whereas loading the exact same page in another window at the same time with Chromium Debian build has near instantaneous load times. I've tried the following troubleshooting steps: - Created a new firefox profile - Tried "Troubleshooting Mode" in Firefox - Disabled ipv6 in firefox about:config and in Debian - Tried different DNS servers - Tried different non-debian specific builds of Firefox - Tried Firefox Beta and Firefox Nightly for Debian

None of these steps made any difference, and Chromium has continued to be significantly faster. Am really stuck here and would love to get to the bottom of this as Firefox is the only browser that works with a HiDPI display in Sway without blurryness. Happy to provide any and all diagnostics and reports that are needed. Thanks in advance!

EDIT: It seems to be some kind of networking issue, using a VPN solves it. But still doesn't explain why Chromium would behave differently.

Asked by Samuel (+Uni) 1 day ago

Last reply by zeroknight 22 hours ago

Picture-in-picture not working properly

Ever since the latest update, the picture-in-picture function stopped working properly. If I activate it, the video will automatically go to full screen, and I need to pr… (read more)

Ever since the latest update, the picture-in-picture function stopped working properly. If I activate it, the video will automatically go to full screen, and I need to press the full screen button multiple times to move it down to a small box. I am using Firefox on a Mac laptop.

Asked by benh2097 1 day ago

Last reply by zeroknight 22 hours ago

Foreign Language Displaying in Firefox

After installing Firefox on a new computer, where everything worked fine, I installed a number of fonts. Afterwards, all of text within Firefox appear to be in some versi… (read more)

After installing Firefox on a new computer, where everything worked fine, I installed a number of fonts. Afterwards, all of text within Firefox appear to be in some version of Arabic. I have tried resetting, deleting and reinstalling, changing the Firefox language, and deleting fonts. None of these seem to work. Firefox is set to English US.

Asked by gregm4 1 day ago

Last reply by zeroknight 22 hours ago

Thin white border left when fit screen

Hi, i just got a new laptop (Asus Zephryus G16, 2560 x 1600 screen) and after installing Firefox there is a thin white border to the left of the screen when running in fi… (read more)

Hi, i just got a new laptop (Asus Zephryus G16, 2560 x 1600 screen) and after installing Firefox there is a thin white border to the left of the screen when running in fit screen. This problem is not present when in a windowed mode or in F11 full screen.

I tried updating the Intel Arc drivers but this did not fix the problem. Changing to compatibility mode also did not fix te problem.

PS: in the uploaded screenshots it is quite dificult to see the white line(because the background is also white), but when the image is viewed in a new tab it is visible.

Thanks

Asked by Daellhin 23 hours ago

Last reply by zeroknight 22 hours ago

Microsoft login Broken

Hey all, as of the past few days when I get the prompt to enter my password on Outlook.com (And microsoft.com) and hit 'sign in' the page just reloads and nothing happens… (read more)

Hey all, as of the past few days when I get the prompt to enter my password on Outlook.com (And microsoft.com) and hit 'sign in' the page just reloads and nothing happens. There is no failed login message, the page just reloads like I didn't hit sign in. I have disabled all of my extensions, cleared cookies and cache, ETP... with no luck.

Works fine on Chrome for android...

I'd really like to stay with Firefox so all help seriously appreciated

Asked by Person Guyerson 1 day ago

Last reply by zeroknight 23 hours 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 1 day ago

Last reply by cor-el 1 day 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 1 day 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 1 day ago

Last reply by jscher2000 - Support Volunteer 1 day ago

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

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.

Asked by maxjen 1 day ago

Last reply by cor-el 1 day ago

Repetitive update request

I keep getting this message that pops up in a private window to restart to keep using firefox. Everytime I click restart Firefox, it closes my tabs and opens them again. … (read more)

I keep getting this message that pops up in a private window to restart to keep using firefox. Everytime I click restart Firefox, it closes my tabs and opens them again. However, 5 minutes later the window pops up again. Even after repeated attempts of updating, even doing a full restart on the computer, Firefox continues to send this window to me. The private window in the bar says about:restartrequired.

I've tried uninstalling Firefox with a fresh install as well as doing a Refresh of Firefox. Neither seem to solve this problem.

Asked by rxs621 1 week ago

Last reply by NoahSUMO 1 day ago

Amazon not working

I was using Amazon just fine a few days ago. When I tried to open an amazon link yesterday, I got the message: Secure Connection Failed. I tried updating my browser and c… (read more)

I was using Amazon just fine a few days ago. When I tried to open an amazon link yesterday, I got the message: Secure Connection Failed. I tried updating my browser and clearing my cache and cookies. Please fix

Asked by cherryblossomshadow3 2 days ago

Last reply by jonzn4SUSE 2 days ago

TLS Errors When Launching Webinars

In recent attempts to join a few webinars I am now getting more and more "TLS Errors." I have noticed that many of the solutions to this problem involve actions that do n… (read more)

In recent attempts to join a few webinars I am now getting more and more "TLS Errors." I have noticed that many of the solutions to this problem involve actions that do not solve the problem but create larger issues. Do you have a solution that works safely? I am forced to use Windows 7 unfortunately due to work systems and a long story. I think this is my primary problem but I have to keep using it until the bitter end with this PC.

I appreciate your kind help. Thanks, Clay

Asked by claytudor 2 days ago

Last reply by cor-el 2 days ago

error messagfe

when I entered this string - chrome://pippki/content/exceptionDialog.xul - I got a 'file not found' message. Is there another way to access that? I am trying to get to … (read more)

when I entered this string - chrome://pippki/content/exceptionDialog.xul - I got a 'file not found' message. Is there another way to access that? I am trying to get to https//mlb.tickets.com and get this message: The page you are trying to view cannot be shown because the authenticity of the received data could not be verified.

Asked by milomorai01 1 week ago

Last reply by cor-el 1 week ago

Firefox Browser

Today I completely uninstalled and reinstalled Firefox. Since doing this, the taskbar icon is not the same as it has always been. It used to be that if I pinned Firefox… (read more)

Today I completely uninstalled and reinstalled Firefox. Since doing this, the taskbar icon is not the same as it has always been.

It used to be that if I pinned Firefox to the taskbar, I would click on it and the default Firefox window would open. When the mouse was right-clicked, the icon showed there was a choice of the default Firefox window and an option for a privacy window I could choose. I did that frequently.

Now if I pin Firefox to the taskbar there is no privacy window option. If I pin the private browser to the taskbar, this becomes the default window with options for the non-private default browser available with a right mouse click.

I would like to know how to pin the default Firefox window to the taskbar and have the private window option show up when that icon is clicked please.

Thanks for any help provided with this issue.

Asked by lightshowe 1 week ago

Last reply by cor-el 1 week ago

when can we have firefox with the translator switches OFF?

hi, When can we have firefox with translation set OFF by default? I mean, it's pretty unfair that intelligent people have to keep turning off the dumb translator... al… (read more)

hi,

When can we have firefox with translation set OFF by default?

I mean, it's pretty unfair that intelligent people have to keep turning off the dumb translator... all the time... We need a setting, openly available, in the Edit/Settings menu, where it belongs, an option to switch it off. In fact, when it first asks if we want a page translated, we need an option: never ask this again...

All we can see is "go under the hood of firefox, config:option, go into the about:config section where 10 of 10 million people will ever get... and there find your way to disable this horrible translator". When can we expect an option in the pop-up: "never ask me this question again"?

The translator in this offensive form has been around since 2023... I seems high time we didn't have to bother with this anymore...

Peter

- - - Thank you for developing firefox and keeping it intelligent - - -

Asked by jepe69 1 week ago

Last reply by cor-el 1 week ago