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:… (Lesen Sie mehr)

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.

Gefragt von raphaelfhb vor 2 Wochen

Letzte Antwort von jonzn4SUSE vor 2 Wochen

Accces to the browser

I use Firefox as my browser but since yesterday I am unable to use it. Each time I click on the firefox icon I am directed to a French Microsoft browser - are you able to… (Lesen Sie mehr)

I use Firefox as my browser but since yesterday I am unable to use it. Each time I click on the firefox icon I am directed to a French Microsoft browser - are you able to help?

John Winn

Gefragt von John Winn vor 2 Wochen

Letzte Antwort von jscher2000 - Support Volunteer vor 2 Wochen

I am a senior citizen, not very computer literate and just want some technical support from Mozilla

Most of the time I cannot print my emails because an "add blocker" is installed. So now, I no longer use Firefox, since when I use Microsoft, I have no such problem. … (Lesen Sie mehr)

Most of the time I cannot print my emails because an "add blocker" is installed. So now, I no longer use Firefox, since when I use Microsoft, I have no such problem.

Gefragt von samandmort2 vor 4 Tagen

Letzte Antwort von cor-el vor 4 Tagen

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… (Lesen Sie mehr)

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?

Gefragt von mark545 vor 1 Woche

Letzte Antwort von zeroknight vor 4 Tagen

Printing problem--been getting a printing error the last couple days this message "error occurred while printing".

been getting a printing error the last couple days this message "error occurred while printing". Printer then puts out partial page(s) then stops printing. been trying … (Lesen Sie mehr)

been getting a printing error the last couple days this message "error occurred while printing". Printer then puts out partial page(s) then stops printing. been trying to print copies of tax forms ( 11 pages)?? page that print shows Firefox in top left corner of page. Today same problem with a four page email print job.

Gefragt von kmfa1 vor 2 Wochen

Letzte Antwort von Paul vor 2 Wochen

Popups still appear despite blocking

Hi, Some websites still managed to smuggle in popups despite all the blockings. I use as add-ons: privacy badger, no-script, ublock origin and recently tried popup block… (Lesen Sie mehr)

Hi,

Some websites still managed to smuggle in popups despite all the blockings. I use as add-ons: privacy badger, no-script, ublock origin and recently tried popup blocker (strict) and even have the 'block pop-up windows' enabled. I also tried to fiddle around in ´about:config´ but nothing helps. I think it's a recent occurrence as I don't remember having this problem, let's say, a couple of months ago.

The funny thing is that this problem doesn't occur in opera-browser (in which I hardly use extensions).

The websites that this occurs are: arabicpost.net (a pop-up will occur about 10 sec after right-clicking a new tab). focus.de (a video pop-up will occur if there's a video in it). Again opera-browser blocks all of this. I expect there will be other websites to add in the future.

Please help. S.O.S. -> g.o.i.n.g..i.n.s.a.n.e!

Gefragt von b.hawassa vor 2 Wochen

Letzte Antwort von zeroknight vor 2 Wochen

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… (Lesen Sie mehr)

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

Gefragt von j.sobiech vor 5 Tagen

Letzte Antwort von jscher2000 - Support Volunteer vor 5 Tagen

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 … (Lesen Sie mehr)

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.

Gefragt von milomorai01 vor 1 Woche

Letzte Antwort von cor-el vor 1 Woche

how to flash tasmota using forefox browser

https://tasmota.github.io/install/ This is an example of what i am tryingto achieve bit no matter on which site i am , i do not get to choose from ports and my devices an… (Lesen Sie mehr)

https://tasmota.github.io/install/ This is an example of what i am tryingto achieve bit no matter on which site i am , i do not get to choose from ports and my devices and always faults out saying similar messages that the browser does not support web serial in one way or the other for any site doing similar task. error message is as shown in the image shared basically complains of browser not supporting web serial.

Gefragt von K2 vor 1 Woche

Letzte Antwort von TyDraniu vor 1 Woche

New updated has broken picutre in picture mac

The latest version of firefox for MacOS 14.4.1 has broken the picture in picture function. When enabling PiP, the video window takes up almost the entire screen and doesn… (Lesen Sie mehr)

The latest version of firefox for MacOS 14.4.1 has broken the picture in picture function. When enabling PiP, the video window takes up almost the entire screen and doesn't remember the size i set it to, like it did in older versions of Firefox. Another issue is when im in fullscreen mode and enable PiP, the PiP window takes me to another 'desktop', whereas before it would simply overlay on top of my screen.

Gefragt von fahimali883222 vor 1 Woche

FireFox takes 2 attempts to load searches.

when I search for a page after opening a tab. The page will load slowly then stop. I'll then have to hit enter again for the page the load. This does not happen with Chro… (Lesen Sie mehr)

when I search for a page after opening a tab. The page will load slowly then stop. I'll then have to hit enter again for the page the load. This does not happen with Chrome or Edge. Any ideas how to fix this frustrating issue. Thanks.

Gefragt von caballerj vor 1 Woche

Only a few of the articles I've saved to Pocket are showing up on Firefox

I added the Save to Pocket (mini) extension to Firefox 125.0.2 today. When I look at the collection of articles I've saved to Pocket (I've been using Pocket for years) in… (Lesen Sie mehr)

I added the Save to Pocket (mini) extension to Firefox 125.0.2 today. When I look at the collection of articles I've saved to Pocket (I've been using Pocket for years) in the browser, I only see 8 articles. But when I open Pocket on my iPhone and iPad, the list of articles I've saved is much more longer (an estimate would be between 50 and 75 articles saved to Pocket). I haven't found any articles in Mozilla support to help me solve this. Thanks

Gefragt von schwann240 vor 1 Tag

Firefox is blocking my own website

How can I get access to my own site again? I have been able to access joycefitch.com for years but today I can no longer access it from Firefox. … (Lesen Sie mehr)

How can I get access to my own site again? I have been able to access joycefitch.com for years but today I can no longer access it from Firefox.

Gefragt von joyce.fitch vor 2 Tagen

Letzte Antwort von cor-el vor 2 Tagen

problem with connecting with Kaiser Permanente only, then loss of most all of my tabs

A few weeks ago I began, while trying to connect to Kaiser from an email message, to get a response that said it was unable to connect because "server not able to redirec… (Lesen Sie mehr)

A few weeks ago I began, while trying to connect to Kaiser from an email message, to get a response that said it was unable to connect because "server not able to redirect." I wasn't getting any error messages from any other sites or attempts to connect with any other sites.

I contacted Kaiser and got some tech office in California (I'm in Hawaii). I did all that they suggested, i.e. "cleaning up" my computer, and I even paid and installed a program called "CClean", and used "Ninite." After making all the "clean ups" the error message was still happening, and later it even mentioned Firefox in the message.

At that point I had no idea what to do and went to "help" on the application menu. Did the "troubleshooting" a couple times, and then saw a "refresh" button, that I thought was probably, and looked innocuous; this led to a bunch of other things that I certainly didn't want to mistakenly perform anything untoward.

After all this I was finally able to link properly with Kaiser, BUT ALL OF MY TABS WERE GONE!

This seems to be a real problem on Firefox, since I've NEVER seen anything that is easy to select to "resolve", "reinstate", or "RECOVER" tabs. I've seen many of the same questions about TAB recovery before.

I've been with Firefox for probably a couple of decades now, and this seems to be a major issue without any "easy" solution. Or, am I just missing something completely?!

Gefragt von lchoquette vor 4 Tagen

Letzte Antwort von jscher2000 - Support Volunteer vor 3 Tagen

Firefox not responding

I am trying to log on to my account at SketchUp. At the login page i hit get started and a black page come up except in the top left corner is typed "Firefox not respond… (Lesen Sie mehr)

I am trying to log on to my account at SketchUp. At the login page i hit get started and a black page come up except in the top left corner is typed "Firefox not responding" the page hangs a few moments then it takes me back to SketchUp login. I have not had any recent updates done or required since last logged in and that was yesterday all worked well.

Gefragt von gobatt vor 2 Tagen

Letzte Antwort von zeroknight vor 1 Tag

Firefox Loaded once but locks up

I reinstalled the Visual C++ and Firefox loaded when i ran the Firefox repair but totally locked up. Unable to get to settings or any website and will not run after clos… (Lesen Sie mehr)

I reinstalled the Visual C++ and Firefox loaded when i ran the Firefox repair but totally locked up. Unable to get to settings or any website and will not run after closing it.

Gefragt von LACanyon vor 1 Woche

Can Not Play Some Videos on Twitter

All Add-ons are disabled and Firefox still can not play SOME of the videos on twitter. All I can see is a spinning circle on the center of the frame and the video will n… (Lesen Sie mehr)

All Add-ons are disabled and Firefox still can not play SOME of the videos on twitter. All I can see is a spinning circle on the center of the frame and the video will never be played. I tried other browsers and they all works well. It seems this issue has nothing to do with my network connection.

I searched this forum and find out some thread reporting issues of not playing All videos on youtube/twitter. Replies to these thread provided some solutions ,like update ffmpeg , set media related options in about:config. I tried them all and neither of them work for me.

Gefragt von chicane vor 1 Woche

Letzte Antwort von cor-el vor 1 Woche