Showing questions tagged: Show all questions

serious tracking protection

hi, when starting firefox, it makes some connections to firebaseinstallations.googleapis.com detectportal.firefox.com app.adjust.com o1069899.ingest.sentry.i… (read more)

hi, when starting firefox, it makes some connections to

   firebaseinstallations.googleapis.com
   detectportal.firefox.com
   app.adjust.com
   o1069899.ingest.sentry.io
   assets.mozilla.net
   contile.services.mozilla.com
   firefox.settings.services.mozilla.com
   incoming.telemetry.mozilla.org
   location.services.mozilla.org

without user-consent. so this is not gdpr-compliant. how can i tell firefox not to connect to these sites? thanks t.

Asked by krupa1 4 months ago

Last reply by cor-el 4 months ago

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… (read more)

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?

Asked by Jorge Gustavo Rocha 5 months ago

Last reply by jonzn4SUSE 5 months ago

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 … (read more)

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

Asked by m.p.hammond 5 months ago

Last reply by jscher2000 - Support Volunteer 5 months ago

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… (read more)

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

Asked by johnh009 5 months ago

Last reply by zeroknight 5 months ago

Firefox takes ~5 minutes to startup (even the Profile Manager and in every possible modes)

Firefox takes about 5 minutes to load every it launches, before working smoothly like it should. This problem occured first time yesterday morning, and I have no idea wha… (read more)

Firefox takes about 5 minutes to load every it launches, before working smoothly like it should. This problem occured first time yesterday morning, and I have no idea what could have caused it.

It happens :

  • when I launch firefox normally (whatever the profile)
  • when I launch it from the terminal (it provides no output at all)
  • when I tell it to launch the Profile Manager (5 minutes to see the Profile Manager appear, then 5 more minutes to launch firefox using the selected profile)

It does not happen :

  • when I click "New Window" inside an existing firefox process
  • when I call `firefox --help` from the terminal

Here's what I've tried :

  • First, I've seen pretty much every article from Mozilla Support, Reddit or SuperUser (writing this question is kind of my last resort)
  • I've tried removing and then reinstalling Firefox from Flatpak, from the Fedora repos (using `sudo dnf install firefox`) and using the manual install via the archive (v125)
  • I've tried downgrading firefox (when using the package manager install) from v125 to v124
  • I've also tried the Firefox Developer Edition, same problem here
  • I've tried using the "Refresh Firefox" feature and restarting in Troubleshoot Mode (both are also affected by the slow startup, which makes them particularly painful to execute)
  • I've tried manually deleting the `~/.mozilla/` folder (= manually deleting my profiles)

When firefox launches, it does not freezes my OS and does not seem to use many system ressources : CPU usage is normal, RAM as well, and it does not seem to read many things from the disk as well (I've seen some threads where this was the issue).

And here is something interesting that I discovered :

  • loading (including refreshing) `about:profiles` is also slow and this time freezes firefox (OS reports it as not responding, I can't switch tabs and I can't see my mouse). Other about pages seem to work fine (although I did not try them all)

Thanks !

PS : Even if I think it has nothing to do with the issue, I prefer to mention it here : I was messing with virtual machines yesterday when the issue occured for the first time. My disk got full at some point and I don't know but it might have messed with firefox. At this stage, I had not deleted any files that could relate somehow to Firefox, that's why I doubt it would have caused anything harmful to Firefox. (instead, I mounted an empty partition from my disk to get some space)

Asked by Martin Heywang 5 months ago

Last reply by jonzn4SUSE 5 months ago

Obscure canvas rendering issue

Hello, I have created a webpage with a canvas element that allows the user to draw an irregular path by pressing down the mouse, similar to the free drawing of a paint … (read more)

Hello,

I have created a webpage with a canvas element that allows the user to draw an irregular path by pressing down the mouse, similar to the free drawing of a paint application. The issue is that the very first time that the user presses the mouse, the line stops abruptly, while the next times the lines are drawn correctly. The events seem to fire correctly and the page works fine at Chromium, so it seems to be a Firefox issue. You can find the html page below. I am curious, what could be the problem?

<!DOCTYPE html>
<html lang="el">

<head>
  <meta charset="UTF-8">
  <meta name="viewport" content="width=device-width, initial-scale=1.0">
  <title>Canvas</title>
  <style>
    #canvas {
      background-color: whitesmoke;
      border: solid 2px brown;
    }
  </style>
</head>

<body>
  <canvas id="canvas"></canvas>

  <script>
    function startDrawing(e) {
      isDrawing = true;
      context.beginPath();
      context.moveTo(e.offsetX, e.offsetY);
    }

    function draw(e) {
      if (isDrawing) {
        context.lineTo(e.offsetX, e.offsetY);
        context.stroke();
      }
    }

    function stopDrawing(e) {
      console.log("stopped drawing")
      isDrawing = false;
    }

    const canvas = document.getElementById('canvas');
    const context = canvas.getContext('2d');
    var isDrawing = false;
    canvas.width = 1000;
    canvas.height = 1000;
    context.strokeStyle = "#913d88";
    context.lineWidth = 2;
    canvas.onmousedown = startDrawing;
    canvas.onmouseup = stopDrawing;
    canvas.onmousemove = draw;
  </script>
</body>

</html>

Asked by ngiatsog 4 months ago

Last reply by jscher2000 - Support Volunteer 4 months ago

how to restore Firefox status bar to show URL under cursor

Firefox 115.11.0esr from openSuse doesn't display a status bar at the bottom of the window. How can I restore this feature to display the actual URL of a "link" under th… (read more)

Firefox 115.11.0esr from openSuse doesn't display a status bar at the bottom of the window. How can I restore this feature to display the actual URL of a "link" under the cursor, as in Thunderbird?

Asked by konsultor 3 months ago

Last reply by jonzn4SUSE 3 months ago

How do I dismiss a permission dialog?

Sometimes a box pops up on the screen that asks if I want to block or allow something. Sometimes I have no interest in doing either, and just want the damned dialog out o… (read more)

Sometimes a box pops up on the screen that asks if I want to block or allow something. Sometimes I have no interest in doing either, and just want the damned dialog out of my face. The page seems to work otherwise, but the stupid browser keeps the dialog over top of things, and clicking outside of it, and hitting Esc, don't make it go away. I think those actions used to work, and I think there, sensibly, used to be a dismiss option, but that seems to be absent now. There's no sense to trying to force me to make a decision I don't want to make, and doesn't even need to be made, and I want this thing to cut it out.

Asked by Sterrence 4 months ago

Last reply by cor-el 4 months ago

User.js file does not apply

I've installed firefox with pacman on Linux, and I installed arkenfox. It did not work, I tried other user.js', none worked. I've also tried wiping my entire firefox root… (read more)

I've installed firefox with pacman on Linux, and I installed arkenfox. It did not work, I tried other user.js', none worked. I've also tried wiping my entire firefox root folder, then using arkenfox, but did not work.

Asked by deateaterOG 1 month ago

Last reply by cor-el 1 month ago

Paste works, but Copy does not

When I copy something to my clipboard I can paste it into Firefox. Into web pages and also into the URL bar. But when I copy something in Firefox, it does not go to the … (read more)

When I copy something to my clipboard I can paste it into Firefox. Into web pages and also into the URL bar.

But when I copy something in Firefox, it does not go to the clipboard. The clipboard still hast the content which was already there.

Also strange: When I cut text in a textarea, input element or the URL bar, the text is removed. But it is not sent to the clipboard. When I cut and paste, the text I get is what was previously in the clipboard.

What could be the cause? How can I debug this problem?

Asked by witek 1 month ago

Last reply by cor-el 1 month ago

Browser crashes on opening certain filetypes (notably PDF)

Hi everyone, I'm running Firefox which I compiled with vaapi support because I was trying to use hardware acceleration for videos, so I think this bug may have something… (read more)

Hi everyone,

I'm running Firefox which I compiled with vaapi support because I was trying to use hardware acceleration for videos, so I think this bug may have something to do with that. Every time I open a pdf file my browser instantly crashes. When I use troubleshoot mode I have no such issue. I then tried with a fresh all-default user profile with no add-ons, nothing, and still I crash when loading a PDF. Any pointers would be appreciated.

Asked by jethro.rosette 5 months ago

Last reply by jonzn4SUSE 5 months ago

I get bad request from the official Mozilla repo

I get bad request from the official Mozilla repo: Err:8 https://packages.mozilla.org/apt mozilla/main all Packages 400 Bad Request [IP: 34.160.78.70 443] Did t… (read more)

I get bad request from the official Mozilla repo: Err:8 https://packages.mozilla.org/apt mozilla/main all Packages

 400  Bad Request [IP: 34.160.78.70 443]

Did the URL change or smth?

Asked by szemawy 4 months ago

Last reply by cor-el 4 months ago

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… (read more)

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

Asked by jepe69 5 months ago

Last reply by cor-el 5 months ago

How to disable minimize on double click

Hello, recently I've been having issues where if misclick anywhere on the title bar (even in the small space between bookmarks) firefox will minimize/restore when I didn'… (read more)

Hello, recently I've been having issues where if misclick anywhere on the title bar (even in the small space between bookmarks) firefox will minimize/restore when I didn't want it too. How do I disable this in about:config?

Asked by s014g03s 3 months ago

Last reply by jonzn4SUSE 2 months ago

Problem with Picture-in-Picture Functionality

Hi everyone, I use Firefox as my primary browser for several reasons, but the main one is because it has the best Picture-in-Picture (PiP) feature. However, I no longer … (read more)

Hi everyone,

I use Firefox as my primary browser for several reasons, but the main one is because it has the best Picture-in-Picture (PiP) feature. However, I no longer use Windows and have encountered problems with it on various Linux distributions (Ubuntu, Fedora, Debian...). Currently, I'm only using Fedora 40, and the problem persists.

The issue is that when I click on the PiP icon, it activates normally, but when I switch windows or minimize and then maximize Firefox again, the video disappears.

I will attach some screenshots to clarify the issue.

I would like to know if there is any way to resolve this. I’ve already reset the settings, cleared the cache, and tested different installation methods (software store, .tar.bz file, apt, dnf, snap). I’ve tried troubleshooting mode and even installed the Developer Edition, but the problem persists. I’m wondering if this is an issue with the Linux version of Firefox.

Thank you.

Asked by caiochaves0610 2 months ago

Last reply by jonzn4SUSE 1 month ago

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 . … (read more)

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 .

Asked by SD SD 5 months ago

Last reply by zeroknight 5 months ago

Using the --new-tab and --search CLI options together doesn't work properly

When I use the `--search` CLI option, Firefox searches the supplied term in a new window. I want it to open itself in a new tab instead, so I tried out the following com… (read more)

When I use the `--search` CLI option, Firefox searches the supplied term in a new window.

I want it to open itself in a new tab instead, so I tried out the following combination of CLI options:

``` $ firefox --new-tab --search "example" ```

Firefox does search for the given term, but it opens itself in a new window instead of a new tab, thus ignoring the `--new-tab` option.

Am I doing something wrong?

Asked by wympo 5 months ago

Last reply by jscher2000 - Support Volunteer 5 months ago