Εμφάνιση ερωτήσεων με ετικέτες: Εμφάνιση όλων των ερωτήσεων

Change Firefox filename pattern for Take Screenshots

Firefox can take screenshots of pages or screenshots of custom areas of pages. According to the documentation, when we download the image, the filename should follow the… (διαβάστε περισσότερα)

Firefox can take screenshots of pages or screenshots of custom areas of pages.

According to the documentation, when we download the image, the filename should follow the pattern: Screen Shot yyy-mm-dd at hh.mm.ss.png. If I use the :screenshot at the console, the pattern works as documented.

But Firefox is using a different pattern when I choose Take Screenshot from the context menu. The pattern includes the page's title. Example: Screenshot 2024-04-14 at 18-35-16 General ‹ Settings ‹ Geomaster Lda — WordPress.png.

Since the page title can have non common filename characters, I have problems with such filenames. My uploads to MediaWiki fails with such filenames. I know I can report or improve MediaWiki, but my question here is quite simple.

Can I change the Firefox's default pattern for Take Screenshot's downloads?

Ερώτηση από Jorge Gustavo Rocha 1 μήνα πριν

Τελευταία απάντηση από jonzn4SUSE 4 εβδομάδες πριν

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… (διαβάστε περισσότερα)

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

Ερώτηση από Pawel Len 1 μήνα πριν

Τελευταία απάντηση από cor-el 1 μήνα πριν

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… (διαβάστε περισσότερα)

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!

Ερώτηση από b.hawassa 1 μήνα πριν

Τελευταία απάντηση από zeroknight 1 μήνα πριν

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… (διαβάστε περισσότερα)

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

Ερώτηση από jepe69 1 μήνα πριν

Τελευταία απάντηση από cor-el 1 μήνα πριν

how to disable new Firefox feature?

I heard that the newest version of Firefox (which I have not upgraded to yet) has a feature that makes it easier to accidentally visit a website whose URL is on the clipb… (διαβάστε περισσότερα)

I heard that the newest version of Firefox (which I have not upgraded to yet) has a feature that makes it easier to accidentally visit a website whose URL is on the clipboard. I googled to find out how to disable it, and the Featured Snippet said "go to about:config and change clipboard.autocopy to false." Sounded simple, so I did it, but subsequently found out that the article it quotes from is 10 years of age!

My first question, then, is: what does changing "clipboard.autocopy" to false do if it doesn't turn off the brand-new feature?

The second question is, how do I disable the new URL Paste Suggestion feature? Will setting "clipboard.autocopy" disable it? In particular, I want to make sure that the browser does not pre-load or pre-fetch the clipboard URL, and in fact, I wish to pop up a dialog box any time I do "paste and go." People often copy URLs from e-mails to research them before visiting them directly; jumping directly will increase the likelihood of visiting an imposter site.

Ερώτηση από 4232jl 2 εβδομάδες πριν

Τελευταία απάντηση από zeroknight 2 εβδομάδες πριν

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… (διαβάστε περισσότερα)

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

Ερώτηση από j.sobiech 3 εβδομάδες πριν

Τελευταία απάντηση από jscher2000 - Support Volunteer 3 εβδομάδες πριν

Firefox does not display background color in option tags

I am trying to use a <select> tag to display a color selector. So each <option> has a background color to match its displayed text: ```<select id="stroke… (διαβάστε περισσότερα)

I am trying to use a <select> tag to display a color selector. So each <option> has a background color to match its displayed text:

```<select id="strokeColor" name="strokeColor" style="width: 10em;">

             <option value="black" style="background: #000000; text: #FFFFFF">
                     black
             </option>

<option value="aqua" style="background: #00FFFF">

                     aqua
             </option>

<option value="blue" style="background: #0000FF">

                     blue
             </option>

<option value="brown" style="background: #A52A2A">

                     brown
             </option>

<option value="gray" style="background: #808080">

                     gray
             </option>

<option value="green" style="background: #00FF00">

                     green
             </option>

<option value="magenta" style="background: #FF00FF">

                     magenta
             </option>

<option value="orange" style="background: #FFA500">

                     orange
             </option>

<option value="purple" style="background: #800080">

                     purple
             </option>

<option value="red" style="background: #FF0000">

                     red
             </option>

<option value="white" style="background: #FFFFFF">

                     white
             </option>

<option value="yellow" style="background: #FFFF00">

                     yellow
             </option>

<option value="#000000" selected="" style="background: #000000">

                     #000000
             </option>
         </select>```

On Chrome this displays as expected:

https://assets-prod.sumo.prod.webservices.mozgcp.net/media/uploads/images/2024-04-18-22-02-25-eebbd5.png

But on Firefox the background colors are ignored:

https://assets-prod.sumo.prod.webservices.mozgcp.net/media/uploads/images/2024-04-18-22-02-35-bd90ee.png

How can I get Firefox to display the background colors?

Ερώτηση από jamescobban 4 εβδομάδες πριν

Τελευταία απάντηση από jscher2000 - Support Volunteer 3 ημέρες πριν

What and where is my Security Key and how do I touch it?

Please see the attached image. Firefox believes I have a security key. What is a security key? Where do I find it? Why does Firefox think I have one? And why is the… (διαβάστε περισσότερα)

Please see the attached image.

Firefox believes I have a security key.

What is a security key? Where do I find it? Why does Firefox think I have one?

And why is there no helpful information to explain this confusing UX?

Ερώτηση από kurrent93 1 μήνα πριν

Τελευταία απάντηση από zeroknight 1 μήνα πριν

huge bloating with version 124.0.4 Linux64

latest 124.0.2 causing severe problems, it will near instantly bloat to fill all RAM and SWAP even in safe mode causes system load over 24! only solution is to reboot ve… (διαβάστε περισσότερα)

latest 124.0.2 causing severe problems, it will near instantly bloat to fill all RAM and SWAP even in safe mode causes system load over 24! only solution is to reboot very problematic on for ex: https://epg.pw/xmltv/epg_CA.xml hard to get a screencap since system is nearly totally unresponsive. RAM is ok SSD is ok MX Linux is ok

Ερώτηση από Galen Thurber 1 μήνα πριν

Τελευταία απάντηση από zeroknight 2 εβδομάδες πριν

Encountered a NS_ERROR_DOM_MEDIA_FATAL_ERR in the MediaDecoderStateMachineBase.cpp process while accessing multiple pdf files.

Opened a directory of pdfs from the command line using ```firefox * &``` and went on with my work. Checked the terminal to see these error messages: ``` [Child 19416… (διαβάστε περισσότερα)

Opened a directory of pdfs from the command line using ```firefox * &``` and went on with my work. Checked the terminal to see these error messages: ``` [Child 19416, MediaDecoderStateMachine #1] WARNING: Decoder=7f6e75431700 Decode error: NS_ERROR_DOM_MEDIA_FATAL_ERR (0x806e0005): file /builddir/build/BUILD/firefox-125.0.2/dom/media/MediaDecoderStateMachineBase.cpp:167 [Child 19416, MediaDecoderStateMachine #1] WARNING: Decoder=7f6e79a87a00 Decode error: NS_ERROR_DOM_MEDIA_FATAL_ERR (0x806e0005): file /builddir/build/BUILD/firefox-125.0.2/dom/media/MediaDecoderStateMachineBase.cpp:167 [Child 19416, MediaDecoderStateMachine #1] WARNING: Decoder=7f6e84e52400 Decode error: NS_ERROR_DOM_MEDIA_FATAL_ERR (0x806e0005): file /builddir/build/BUILD/firefox-125.0.2/dom/media/MediaDecoderStateMachineBase.cpp:167 ``` I tried recreating this error by restarting the entire process and repeating everything, but to no avail. I'll try to recreate the error a few more times, however if I don't post a message it means I was unsuccessful.

Details: Mozilla Firefox 125.0.2

CPU: Architecture: x86_64

 CPU op-mode(s):         32-bit, 64-bit
 Address sizes:          39 bits physical, 48 bits virtual
 Byte Order:             Little Endian

CPU(s): 8

 On-line CPU(s) list:    0-7

Vendor ID: GenuineIntel

 Model name:             Intel(R) Core(TM) i5-8350U CPU @ 1.70GHz
   CPU family:           6
   Model:                142
   Thread(s) per core:   2
   Core(s) per socket:   4
   Socket(s):            1
   Stepping:             10
   CPU(s) scaling MHz:   22%
   CPU max MHz:          3600.0000
   CPU min MHz:          400.0000
   BogoMIPS:             3799.90
   Flags:                fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge
                          mca cmov pat pse36 clflush dts acpi mmx fxsr sse ss
                         e2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constan
                         t_tsc art arch_perfmon pebs bts rep_good nopl xtopol
                         ogy nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes6
                         4 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16
                          xtpr pdcm pcid sse4_1 sse4_2 x2apic movbe popcnt ts
                         c_deadline_timer aes xsave avx f16c rdrand lahf_lm a
                         bm 3dnowprefetch cpuid_fault epb pti ssbd ibrs ibpb 
                         stibp tpr_shadow flexpriority ept vpid ept_ad fsgsba
                         se tsc_adjust sgx bmi1 avx2 smep bmi2 erms invpcid m
                         px rdseed adx smap clflushopt intel_pt xsaveopt xsav
                         ec xgetbv1 xsaves dtherm ida arat pln pts hwp hwp_no
                         tify hwp_act_window hwp_epp vnmi md_clear flush_l1d 
                         arch_capabilities

Virtualization features:

 Virtualization:         VT-x

Caches (sum of all):

 L1d:                    128 KiB (4 instances)
 L1i:                    128 KiB (4 instances)
 L2:                     1 MiB (4 instances)
 L3:                     6 MiB (1 instance)

NUMA:

 NUMA node(s):           1
 NUMA node0 CPU(s):      0-7

Vulnerabilities:

 Gather data sampling:   Mitigation; Microcode
 Itlb multihit:          KVM: Mitigation: VMX disabled
 L1tf:                   Mitigation; PTE Inversion; VMX conditional cache flu
                         shes, SMT vulnerable
 Mds:                    Mitigation; Clear CPU buffers; SMT vulnerable
 Meltdown:               Mitigation; PTI
 Mmio stale data:        Mitigation; Clear CPU buffers; SMT vulnerable
 Reg file data sampling: Not affected
 Retbleed:               Mitigation; IBRS
 Spec rstack overflow:   Not affected
 Spec store bypass:      Mitigation; Speculative Store Bypass disabled via pr
                         ctl
 Spectre v1:             Mitigation; usercopy/swapgs barriers and __user poin
                         ter sanitization
 Spectre v2:             Mitigation; IBRS; IBPB conditional; STIBP conditiona
                         l; RSB filling; PBRSB-eIBRS Not affected; BHI Not af
                         fected
 Srbds:                  Mitigation; Microcode
 Tsx async abort:        Mitigation; TSX disabled

Ερώτηση από mustafa.290101 1 εβδομάδα πριν

Τελευταία απάντηση από cor-el 1 εβδομάδα πριν

No response on my bugs.

I have started posting bugs of Firefox in Bugzilla for almost 6 months now(though the number of bugs is 3). I have noticed that the bugs really had no response for nearly… (διαβάστε περισσότερα)

I have started posting bugs of Firefox in Bugzilla for almost 6 months now(though the number of bugs is 3). I have noticed that the bugs really had no response for nearly then(almost 6 months), so is it the way bugs are handled?, like they take long time to address( just asking as I though the process to be relatively fast) or is it something that I might be doing wrong in reporting a bug. I searched online and have been looking at assigning the bug( what I understood). So, how to do it if there exists something like assigning and will it increase the movement on my bugs??

Ερώτηση από Bhaumik Tripathi 2 εβδομάδες πριν

Τελευταία απάντηση από jonzn4SUSE 2 εβδομάδες πριν

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 … (διαβάστε περισσότερα)

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.

Ερώτηση από Samuel (+Uni) 3 εβδομάδες πριν

Τελευταία απάντηση από zeroknight 2 εβδομάδες πριν

mouse pointer

mouse pointer is nice size in general but becomes VERY small when I go into websites. this happens when i use either floorp or firefox but is fine when i use chrome( woul… (διαβάστε περισσότερα)

mouse pointer is nice size in general but becomes VERY small when I go into websites. this happens when i use either floorp or firefox but is fine when i use chrome( would rat5her not use google). i just don't see where I can fix this in Firefox settings

Ερώτηση από bill morin 2 εβδομάδες πριν

Τελευταία απάντηση από zeroknight 2 εβδομάδες πριν

Tabs not completely shifted over to the left.

Hello Good People, I installed Firefox a few days ago and it was looking good. I don't like that icon in the top-left hand so I right clicked it and removed it. All was … (διαβάστε περισσότερα)

Hello Good People,

I installed Firefox a few days ago and it was looking good. I don't like that icon in the top-left hand so I right clicked it and removed it. All was good. However, today there is a blank black space in the corner as if the icon was back (but without an actual icon). It's only a small thing but it bugs me. I want the tabs to be shifted all the way over to the left like they have been up to today. It's triggering my OCD. Anyway, any advice appreciated.

Best Wishes

Matt Hammond

Ερώτηση από m.p.hammond 1 μήνα πριν

Τελευταία απάντηση από jscher2000 - Support Volunteer 1 μήνα πριν

Crashes without reason (Linux)

System OS: Debian (codename: bookworm) Problem description: I had installed a fresh version of Firefox and it's keeping to crash the pages (Error: The page has crashed) … (διαβάστε περισσότερα)

System OS: Debian (codename: bookworm) Problem description:

I had installed a fresh version of Firefox and it's keeping to crash the pages (Error: The page has crashed) without any reason. Any troubleshoot methods (including clearing the cache, cookies, history and even restarted the network and pc.... only to fail and keep having same issue.

I had checked if there is no problem with the opened website in another web browser and in it the page was working correctly.


The issue persist from several versions of Firefox

Ερώτηση από Mcgiwer 2 εβδομάδες πριν

Τελευταία απάντηση από zeroknight 2 εβδομάδες πριν

Google Maps Street View

When the little yellow man is placed on to the map, and a direction arrow is clicked, the view just continues to spin round. Clicking on the 'X' in the top right hand cor… (διαβάστε περισσότερα)

When the little yellow man is placed on to the map, and a direction arrow is clicked, the view just continues to spin round. Clicking on the 'X' in the top right hand corner terminates street view. This does not happen with other browsers.

My OS is Debian 12, Firefox is the latest version 115.9.1esr (64bit).

Ερώτηση από johnh009 1 μήνα πριν

Τελευταία απάντηση από zeroknight 4 εβδομάδες πριν

extensions.json key

Hello I want to use extension xpi's from a shared external folder over multiple Linux profiles. So i examined the profile folder and found extensions.json. Though i can'… (διαβάστε περισσότερα)

Hello

I want to use extension xpi's from a shared external folder over multiple Linux profiles. So i examined the profile folder and found extensions.json. Though i can't find any documentation to it's keys online.

There's "rootURI:" with a "jar:file://path/to/extension.xpi!/", so i tried just replacing the path with the shared one. Though i observed that just makes firefox replace the path with the current one. So i examined further and found the "location:" key with the default value "app-profile". So my guess is, there's other values for other usecases, right?

So, in summary, what i need is:

  • documentation to extensions.json keys or possible values to "location" key.
  • if that isn't intended/doesn't work, how i can achieve my goal otherwise.

And please don't suggest the sync feature, that doesn't work for my usecase.

Ερώτηση από dani.priv+moz 1 μήνα πριν

Τελευταία απάντηση από cor-el 1 μήνα πριν

Unintended scroll to top of page

browsing website (reddit or amazon for example), the window scrolls to the top every time I move the mouse. doesn't happen all the time though, and only in Firefox. I've … (διαβάστε περισσότερα)

browsing website (reddit or amazon for example), the window scrolls to the top every time I move the mouse. doesn't happen all the time though, and only in Firefox. I've serached the internet and can't find anything related. Please help

Ερώτηση από myblackfrog 4 εβδομάδες πριν

Τελευταία απάντηση από zeroknight 4 εβδομάδες πριν

firefox private mode language error

I use firefox on fedora 38 and after update firefox about a month ago . i got this error when use private mode ,for thai languge it just error but in normal mode it ok . … (διαβάστε περισσότερα)

I use firefox on fedora 38 and after update firefox about a month ago . i got this error when use private mode ,for thai languge it just error but in normal mode it ok .

Ερώτηση από SD SD 4 εβδομάδες πριν

Τελευταία απάντηση από zeroknight 4 εβδομάδες πριν