Viewport in the devtools going out of bounds when resizing the viewport

Hello everyone, I’m a fan of Firefox due to its efficient handling of webpage caching and memory management. However, I often find myself switching back to the Chromium-b… (read more)

Hello everyone, I’m a fan of Firefox due to its efficient handling of webpage caching and memory management. However, I often find myself switching back to the Chromium-based Edge browser due to one specific feature in its DevTools. In Edge, when I resize the viewport, it stops at a certain limit. If I want to resize it further, I can zoom out and then continue resizing. I find this feature very useful. Is there a way to have similar functionality in Firefox? I’m currently using the Firefox Developer Edition.

Asked by Aditya Prieš 2 savaites

My saved username and password is not being displayed on 1 website

The full website link has /users/login, but when I checked the saved passwords, the link stops before the first /, its just websitename.com, instead of wesbsitename.com/u… (read more)

The full website link has /users/login, but when I checked the saved passwords, the link stops before the first /, its just websitename.com, instead of wesbsitename.com/users/login, and I suspect the full link not being save is whats causing it not to show up. Is there any way to brute force it to show up?

Asked by ThSoMa Prieš 2 savaites

Last reply by cor-el Prieš 2 savaites

Connection to azure cognitive service failed with Firefox

Firefox can’t establish a connection to the server at wss://centralindia.stt.speech.microsoft.com/speech/recognition/interactive/cognitiveservices/v1?language=en … (read more)

Asked by Fauzan ahmad Prieš 5 dienas

Last reply by zeroknight Prieš 5 dienas

Netflix Error - F7355-1203

Hi, I was using FF on Ubuntu 22.04.4 LTS. Had version FF 120.x and playing video in Netflix worked fine. Then I updated to FF 124.x and playing video stopped with error… (read more)

Hi,

I was using FF on Ubuntu 22.04.4 LTS. Had version FF 120.x and playing video in Netflix worked fine. Then I updated to FF 124.x and playing video stopped with error F7355-1203.

I've checked the DRM setting and it is enabled, I checked addons and I have OpenH264 and Widevine installed, both set to always active.

I've checked installed codecs and I do have libavcodec58 installed. No update for that available via apt. I also have ffmpeg installed, no problem with that either. I can play Netflix videos in Chrome, but not in Firefox now. Something happened to Firefox when I updated from 120.x to 124.x. Today I updated to 125.x, same problem, Netflix video won't play.

I've unchecked the DRM setting and re-checked it, and that does reinstalled Widevine but does not fix the problem.

Any ideas what could be the cause?

Asked by mark545 Prieš 1 savaitę

Last reply by zeroknight Prieš 5 dienas

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 Prieš 6 dienas

Last reply by zeroknight Prieš 6 dienas

Downloads

please add a bar that shows how much is left until the end, e.g. like in Chrome it writes how much has been downloaded and estimates the time until the end of the file do… (read more)

please add a bar that shows how much is left until the end, e.g. like in Chrome it writes how much has been downloaded and estimates the time until the end of the file download and then neutralize the CPU usage when turning on the Firefox browser I really like your browser but it irritates me that it uses a lot of computer resources and there is no bar how much is left and how much has been downloaded and add a startup wallpaper on your mozilla shop website and in the task bar, it will be best to on version 124.1.6 Refresh and also to gain dominance over chrome add support for the poor homeless and needy and and start being aggressive in the market and overtaking edge and buying smaller browser organizations and and reduce resource consumption as much as possible, this way you will increase support for weaker computers and create your own AI support, e.g. Phoenix AI, Google does not have it, so you have an advantage and and reduce the resource consumption as much as possible, this way you will increase support for weaker computers and create your own AI support, e.g. Phoenix AI, Google does not have it, so you have an advantage and add your own offline game, e.g. a fox running away from the storm and let there be sun with trees and and add Firefox Rewards, e.g. a photo with Firefox and give a warning, e.g. low battery, users will thank you for everything, don't thank you because it also brings bad luck and remember forever i love firefox browser and during installation at the end of the firefox installation, thank you for installing our firefox browser!

Asked by Moshi YT Prieš 2 savaites

Last reply by Paul Prieš 2 savaites

Restoring home content shortcuts

I've been using Firefox home content shortcuts usefully on my Windows system. I installed Ubuntu on Vmware last night and synced Firefox account in it. After that, the ho… (read more)

I've been using Firefox home content shortcuts usefully on my Windows system. I installed Ubuntu on Vmware last night and synced Firefox account in it. After that, the home content shortcuts are all changed to the default status. I think it's because that I clicked the sync now button on Ubuntu. Is there a way to roll it back? Thanks.

Asked by Zen Prieš 2 savaites

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 Prieš 6 dienas

Last reply by jscher2000 - Support Volunteer Prieš 6 dienas

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 Prieš 2 savaites

Last reply by cor-el Prieš 2 savaites

EXCEPTION_ACCESS_VIOLATION_READ

I have at least some computer knowledge but not enough to understand the link on the crash report that says what this report means. Is there a cliff notes version of why… (read more)

I have at least some computer knowledge but not enough to understand the link on the crash report that says what this report means. Is there a cliff notes version of why my firefox keeps crashing. I have link to the page so I am not sure what info is needed to help me. I can give screenshots or link info. I'm not sure if it's safe to post everything on report or what is necessary.

Asked by Shelly Bell Prieš 2 savaites

Last reply by zeroknight Prieš 2 savaites

Videos automatically play after a short period of time after being paused (Ubuntu 22.04)

When I pause a video (any site) and go to another tab / stay on the site, after a seemingly random amount of time the video starts playing again. I'm using latest Firef… (read more)

When I pause a video (any site) and go to another tab / stay on the site, after a seemingly random amount of time the video starts playing again.

I'm using latest Firefox on Ubuntu 22.04 (snap).

I've tried (didn't work):

  • Disabling media hardware controls through about:config
  • Disabling autoplay through about:config

Asked by Pawel Len Prieš 2 savaites

Last reply by cor-el Prieš 2 savaites

Issue with using YouTube on Firefox Ubuntu 22.04

Anyone experiencing issue with YouTube on Firefox - I am not able to select suggestions on YouTube search using up/down arrow keys - On Ubuntu 22.04 - Firefox 124.0.2 … (read more)

Anyone experiencing issue with YouTube on Firefox - I am not able to select suggestions on YouTube search using up/down arrow keys - On Ubuntu 22.04 - Firefox 124.0.2

Asked by harshakp06 Prieš 2 savaites

Last reply by zeroknight Prieš 2 savaites

Need help restoring browser bookmarks from backup

This morning, I was unable to log into Discord to watch a livestream because my hard drive was overfull and it was unable to install a mandatory update. Because this was … (read more)

This morning, I was unable to log into Discord to watch a livestream because my hard drive was overfull and it was unable to install a mandatory update. Because this was a time sensitive issue, I wiped a bunch of crap off my drive as fast as I could, and I guess somehow I deleted my browser bookmarks because the field now shows as empty when I open Firefox. I was able to track down the backup file, but it throws an error when I tell it to restore. Is there anything I can do about this?

Asked by 3gold5u Prieš 2 savaites

Last reply by cor-el Prieš 2 savaites

Unwanted page loads up during windows startup

The page https://www.stardock.com/products/groupy/update opens during the loading of the OS background processes. I have looked up on the windows task manager, the about:… (read more)

The page https://www.stardock.com/products/groupy/update opens during the loading of the OS background processes. I have looked up on the windows task manager, the about:config and haven't found anything related to this process.

Asked by raphaelfhb Prieš 2 savaites

Last reply by jonzn4SUSE Prieš 2 savaites