Kukhonjiswa imibuzo ethegiwe: Veza yonke imibuzo

Dont know why some pages shows me in russian language

Hello. I have put my language everywhere on the settings which is latvian. For possible translations i have only put english. Some pages, for example, whatsapp web is sho… (funda kabanzi)

Hello. I have put my language everywhere on the settings which is latvian. For possible translations i have only put english. Some pages, for example, whatsapp web is showing in russian ( i mean the app data for sure, not the messages), also some homepages i use open automatically in russian. How can i put latvian by default or if its not available for the homepage, put english automatically?

Asked by Edgars Rudzītis 3 ezinsukwini ezidlule

Last reply by cor-el 40 imizuzu edlule

Problem on "homepage" YT with sound playing

First, I am disabled When I goto to YT Homepage it will play all the sounds of the downloaded video's when I hover with the mouse. But I want to hear the sound of that… (funda kabanzi)

First, I am disabled

When I goto to YT Homepage it will play all the sounds of the downloaded video's when I hover with the mouse.

But I want to hear the sound of that video AFTER I selected that Video or clicked on the title.

Thx!

Asked by Mac 54 imizuzu edlule

Can't close Firefox with multi pages opened through right clicking the taskbar.

Firefox Version: 124.0.2 (64 bit) Windows Version: Windows 10 LTSC 2019 (Version 1809) When I right click the taskbar and press close Firefox, here comes the interface j… (funda kabanzi)

Firefox Version: 124.0.2 (64 bit) Windows Version: Windows 10 LTSC 2019 (Version 1809)

When I right click the taskbar and press close Firefox, here comes the interface just as the screenshot uploaded. The blue close button doesn't response no matter how I click it and the Firefox's taskbar is flashing yellow. This bug only occurs on the first window of Firefox and only when user right click the taskbar.

It has been a long time for me wishing that some updates would be released soon to fix this issue, while noting happens. Or this bug is only for me?

Asked by Feeling Unreal 2 emasontweni adlule

Last reply by zeroknight 5 amahora adlule

trackpad preference

At one time, I was able to swipe left on my trackpad and go back to the previous page on firefox. I can't seem to find where to set that preference. I'm running MacOS. … (funda kabanzi)

At one time, I was able to swipe left on my trackpad and go back to the previous page on firefox. I can't seem to find where to set that preference. I'm running MacOS.

Asked by wallin.ian 1 usuku oludlule

Last reply by zeroknight 8 amahora adlule

mozilla monitor

I'm considering purchasing Mozilla monitor Plus. How many email addresses will I be able to have scanned if I sign up for that product? My wife & I currently have 3 e… (funda kabanzi)

I'm considering purchasing Mozilla monitor Plus. How many email addresses will I be able to have scanned if I sign up for that product? My wife & I currently have 3 email addresses we use.

Asked by vpops 2 ezinsukwini ezidlule

Last reply by James 2 ezinsukwini ezidlule

many issues with YouTube on Firefox on pixel 8

On YouTube the video will start playing but the rectangle it should be in will still be black, refreshing usually works. Sometimes a video will simply stop playing. Somet… (funda kabanzi)

On YouTube the video will start playing but the rectangle it should be in will still be black, refreshing usually works. Sometimes a video will simply stop playing. Sometimes i have to close all apps and restart the browser twice to get it to work. Sometimes trying to go to full screen will crash the app. Sometimes popping the app out of full screen into a floating window crashes it. This one is new, it's the uploaded screenshot, it crashed mid video and made the video look funny.

Asked by David Vanderheide 2 ezinsukwini ezidlule

Trying to update email address

Am trying to update my email address. When I try to make the secondary the primary, it wants a verification code entered. The field for this code will not let me paste it… (funda kabanzi)

Am trying to update my email address. When I try to make the secondary the primary, it wants a verification code entered. The field for this code will not let me paste it or enter it manually. Will this glitch be fixed soon?

Asked by Carmen 2 ezinsukwini ezidlule

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… (funda kabanzi)

#!/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 3 ezinsukwini ezidlule

Last reply by jscher2000 - Support Volunteer 3 ezinsukwini ezidlule

Username data field

While this is a Privacy and Security setting issue - at least tangentially - my question isn't about security so much as how this data is being stored/retrieved. I navig… (funda kabanzi)

While this is a Privacy and Security setting issue - at least tangentially - my question isn't about security so much as how this data is being stored/retrieved.

I navigated to an entirely new site the other day and it requested a username and password. When the cursor was in the Username field, a set of proposed entries showed up. These were all (recognizable) first names - not emails. When I checked the Privacy and Security settings, I couldn't find any of the names in stored data. While this may be just cached entries for similar fields ("username" or "name" etc...), the list I saw was heavily curated. One of the names I don't ever recall even entering in any name field (and wouldn't have been used for any login) - but even if I had, the list that I saw was far from exhaustive and would only have been a very specific subset of any data I would have entered into any "name" or "username" field.

Is there somewhere I can find how that list was generated?

Thank you,

Asked by nikolai42 3 ezinsukwini ezidlule

Last reply by jscher2000 - Support Volunteer 3 ezinsukwini ezidlule

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. … (funda kabanzi)

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 isonto elidlule

Last reply by NoahSUMO 3 ezinsukwini ezidlule

Disable "Entering Full Screen Mode" Message in Firefox Android

Hi, In Firefox Android, Could you add an option to disable the display of the message "Entering Full Screen Mode" when entering a full screen mode for a web app such as … (funda kabanzi)

Hi,

In Firefox Android, Could you add an option to disable the display of the message "Entering Full Screen Mode" when entering a full screen mode for a web app such as an online video player? I find it annoying because I can clearly see that the video player is in full screen mode and the message just blocks whatever I'm trying to view in the video player like the subtitles of a video.

Asked by imninja007 5 ezinsukwini ezidlule

Last reply by Paul 3 ezinsukwini ezidlule

Firefox for Android does not follow system theme changes

Firefox for Android does not follow system theme changes i.e. dark to light. Discovered on Samsung Galaxy A22, Android 14 and Firefox 124.2.0 Steps to reproduce: Co… (funda kabanzi)

Firefox for Android does not follow system theme changes i.e. dark to light.

Discovered on Samsung Galaxy A22, Android 14 and Firefox 124.2.0

Steps to reproduce:

  1. Configure Android to automatically switch themes. For Samsung Galaxy this is Settings - Dark Mode Settings - Turn on as scheduled
  2. Wait until Android toggles theme from dark to light.
  3. Notice Firefox has a black border.
  4. Go into Application info for Firefox and force stop, then reopen
  5. Now notice it doesn't.

This is a reopen of this archived issue: 1421453

Asked by Chris Vitalos 4 ezinsukwini ezidlule

ALL bookmarks wiped out by April 2024 Firefox update to Android phone 😡

Why were my bookmarks wiped out by April 2024 forced Firefox update to my Android Samsung S21 Ultra? 😡 Since I don't synch, can't find a way to restore my many bookmarks.… (funda kabanzi)

Why were my bookmarks wiped out by April 2024 forced Firefox update to my Android Samsung S21 Ultra? 😡 Since I don't synch, can't find a way to restore my many bookmarks.

Asked by Ki Ki 4 ezinsukwini ezidlule

many issues with YouTube on Firefox on pixel 8

On YouTube the video will start playing but the rectangle it should be in will still be black, refreshing usually works. Sometimes a video will simply stop playing. Somet… (funda kabanzi)

On YouTube the video will start playing but the rectangle it should be in will still be black, refreshing usually works. Sometimes a video will simply stop playing. Sometimes i have to close all apps and restart the browser twice to get it to work. Sometimes trying to go to full screen will crash the app. Sometimes popping the app out of full screen into a floating window crashes it. This one is new, it's the uploaded screenshot, it crashed mid video and made the video look funny.

Asked by David Vanderheide 4 ezinsukwini ezidlule

Pinning an app

Am I able to pin a podcast app player that is no longer available in the Google play store nor has an email or website? I would like to put it on my homepage as I use it … (funda kabanzi)

Am I able to pin a podcast app player that is no longer available in the Google play store nor has an email or website? I would like to put it on my homepage as I use it all the time.

Asked by grayfloyd21 5 ezinsukwini ezidlule