Kiosk mode and Firefox popups, cannot suppress them?

I'm running a UI deployment with a web-app and Firefox on an Ubuntu system. I'm running Firefox with the flag "--kiosk" to place it into kiosk mode (booted from the comm… (læs mere)

I'm running a UI deployment with a web-app and Firefox on an Ubuntu system.

I'm running Firefox with the flag "--kiosk" to place it into kiosk mode (booted from the command line upon system boot). This works fine, and boots up Firefox to the page I want (my web-app) in kiosk mode (full-screen, etc.)

However, I get very annoying popups that are not acceptable for deployments in front of customers. I have tried, but CANNOT suppress all of them, or, when I thought I did, they came back a month later.

Popups:

1. "Keep pesky trackers off your tail. Open my links with Firefox" 2. "Welcome back" 3. Others like this...

These are Firefox browser popups, not related to popups that other websites can put up, and block the entire screen with an overlay until they are dismissed. My deployments are only going to a single web-page that I control (which has no popups) and there is no keyboard on the deployed system, so people cannot navigate elsewhere.

Things I've tried:

1. Firefox is installed via snap, which provides "snapshotting" configuration for the Firefox snap. I loaded Firefox, cleared the annoying dialogs, and then took a snapshot (theorying that I set Firefox configuration when doing this, and I capture that in the snapshot) and re-installed it onto a new system. Still go popups 2. Looked into user.js preferences. I can install this file onto the system, so I looked through https://searchfox.org/mozilla-release/source/remote/shared/RecommendedPreferences.sys.mjs and this is how I initially got all the popups to disable themselves. I looked through that list and tested most of the recommended settings until the popups disappeared. However, after a month or so, I'm beginning to see the popups again.


Any suggestions from Mozilla or others that run into this issue?

Stillet af Devin for 1 uge siden

Seneste svar af zeroknight for 1 uge siden

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 … (læs mere)

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

Stillet af harshakp06 for 1 uge siden

Seneste svar af zeroknight for 1 uge siden

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 … (læs mere)

Stillet af Fauzan ahmad for 2 dage siden

Seneste svar af zeroknight for 2 dage siden

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… (læs mere)

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?

Stillet af mark545 for 1 uge siden

Seneste svar af zeroknight for 2 dage siden

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… (læs mere)

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.

Stillet af benh2097 for 2 dage siden

Seneste svar af zeroknight for 2 dage siden

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… (læs mere)

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

Stillet af j.sobiech for 3 dage siden

Seneste svar af jscher2000 - Support Volunteer for 3 dage siden

Lost favorites

Good morning, I have a problem with disappearing bookmarks, but I can organise the backup of the places.sqlite, but I assume that won´t be enough to recover, therefore my… (læs mere)

Good morning, I have a problem with disappearing bookmarks, but I can organise the backup of the places.sqlite, but I assume that won´t be enough to recover, therefore my question is, which files would be needed or is the one mentioned sufficient?

Thank you very much,

Mike

Stillet af mstgier for 1 dag siden

Seneste svar af jscher2000 - Support Volunteer for 1 dag siden

Hotmail won't load on Firefox

Hi there, About 4 days ago, hotmail suddenly stopped loading on Firefox (though I can still access it on Safari). I've tried clearing my cache and add-ons, etc. I've go… (læs mere)

Hi there,

About 4 days ago, hotmail suddenly stopped loading on Firefox (though I can still access it on Safari). I've tried clearing my cache and add-ons, etc. I've googled a ton and tried all the things I can find to try, but nothing is working. I am by no means a tech person and so I'm out of ideas and need some help. I know I can use Safari, but I really hate using it and prefer Firefox. Any ideas on what to do? I am using a MacBook Pro - Sonoma 14.4.1

Thank you so much! Jocelyn Pascall

Stillet af jocie809 for 1 uge siden

Seneste svar af zeroknight for 1 uge siden

Homescreen bug - blank survey

A blank survey pops up in my homepage each time I open Firefox, I haven't filled it yet since I don't know what it entails and what it is about. There is no option to clo… (læs mere)

A blank survey pops up in my homepage each time I open Firefox, I haven't filled it yet since I don't know what it entails and what it is about. There is no option to close it either, and it seems bugged as it isn't going away even after updating the version of Firefox, it is still present on 125.0.2 version. Kindly assist regarding the same. I have attached a picture of the same herewith.

Stillet af johnghosting for 1 dag siden

Seneste svar af jscher2000 - Support Volunteer for 1 dag siden

Update has scrambled bookmarks

The latest updated to Firefox for Mac (125.0.2) has completely scrambled accessing my bookmarks. Before the update I could type T in the search bar and up popped the URL … (læs mere)

The latest updated to Firefox for Mac (125.0.2) has completely scrambled accessing my bookmarks. Before the update I could type T in the search bar and up popped the URL for The Globe and Mail; or N and the URL for the New York Times popped up. (This works because no other bookmark begins with these letters.) Both are in my Toolbar (no bookmarks have actually changed or disappeared with the update). Now when I type T, a completely different URL turns up, plus a drop-down menu of other URLs randomly selected from any of my bookmark lists IN WHICH A T APPEARS ANYWHERE in it; and when I type N, a website I've NEVER EVEN SEEN BEFORE (name.com) shows up, plus a drop-down menu with URLs from my bookmarks that contain an N anywhere in the URL. Why is this happening, and how to fix it? Please don't tell me I have to switch back to Safari.

Stillet af gtintner for 3 timer siden

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… (læs mere)

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?

Stillet af ThSoMa for 2 uger siden

Seneste svar af cor-el for 1 uge siden

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… (læs mere)

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

Stillet af cherryblossomshadow3 for 3 dage siden

Seneste svar af jonzn4SUSE for 3 dage siden

I cannot post comments to any Youtube video

The comment windows are present but do not function. The youtube hosts are accepting comments from other folks. I wonder if some Firefox settings need adjustment so I c… (læs mere)

The comment windows are present but do not function. The youtube hosts are accepting comments from other folks. I wonder if some Firefox settings need adjustment so I can participate. If you reply I hope it goes straight to my email address as I nmay not find this site easily/again.

Stillet af howaya@aol.com for 1 uge siden

Seneste svar af zeroknight for 1 uge siden

import data from my old pc to my new pc

i am setting up a new laptop and trying to import all my current data from my old pc. Nothing is right. It imported alll the shortcuts on my toolbar from years ago. None … (læs mere)

i am setting up a new laptop and trying to import all my current data from my old pc. Nothing is right. It imported alll the shortcuts on my toolbar from years ago. None of these are the current bookmarks from my old pc. ive tried syncing, importing again, nothing works. my bookmarks on my side bar are years old. I dont have ANY of these on my old pc as i deleted them years ago. what the heck is happening and how do i get my new pc browser to look exactly as my old pc looks. This is very frustrating. I have over 500 bookmarks on my sidebar. it looks like every bookmark i have EVER used. This is ridiculous.

Stillet af jkhcast for 1 uge siden

Seneste svar af cor-el for 1 uge siden