Prikaz označenih pitanja: Prikaži sva pitanja

Policy to set startpage not working on first start / Linux

Hello, I am using firefox 126.0 on linux mint 21.2 with an policy file in the directory "/usr/lib/firefox/distribution/policies.json". This is just working fine with one… (pročitajte više)

Hello,

I am using firefox 126.0 on linux mint 21.2 with an policy file in the directory "/usr/lib/firefox/distribution/policies.json". This is just working fine with one little problem. When opening firefox the first time, it does not apply the policy to set the startpage to the url in the policy file. All other policies seem to be applied correctly. I figured out, that at the first start of firefox, no user profile (folder) "~/.mozilla/" exists. When i click the little "house" button on the the top besides the refresh buton, the correct startpage is shown. After the first start this folder is created and then the policies work fine even the startpage shows up directly. Can I somehow use a template profiles-folder for new users, so they have the correct firefox feeling at the first start or is there something missing in my policy file ? The policy file has rights set to "644 root:root" Image of the policy file is attached because I can't upload files other then images.

Thank you.

Asked by naumaj prije 12 sati

Reading List Extension?

I'm switching to Firefox from Vivaldi since adblocking on YouTube no longer works on Chromium-based browsers, and Google is determined to annoy me even outside of Chrome … (pročitajte više)

I'm switching to Firefox from Vivaldi since adblocking on YouTube no longer works on Chromium-based browsers, and Google is determined to annoy me even outside of Chrome (they also forced their material design context menus on everything else based on Chromium). However, I'm finding I'm missing the reading list functionality immediately. It has become a basic part of how I browse, and I attempted to use Pocket, but I'm finding that I hate how Pocket works compared to Vivaldi's reading list. Does anyone know of a good extension that emulates how Chromium-based browsers have their reading list, including working with sync so I can pass links between devices?

Asked by valeriemdeane prije 16 sati

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… (pročitajte više)

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 prije 3 dana

Last reply by cor-el prije 22 sati

firefox browser on face book

Hello when i am on facebook,and i want to do a video chat or a call chat it now tells me that video or voice calling is not supported by this browser,yet it was all worki… (pročitajte više)

Hello when i am on facebook,and i want to do a video chat or a call chat it now tells me that video or voice calling is not supported by this browser,yet it was all working fine about a week ago and i went to do a video call two days ago and now i can't,i have no idea what has happened regards mark

Asked by mdk308 prije 23 sati

The "Triage Manager" for Mozilla Refuses to assign anyone to a seven year old open problem

I need to go over the head of the Mozilla Triage manager who has left https://bugzilla.mozilla.org/show_bug.cgi?id=1406865 open without a resolution for **seven years**. … (pročitajte više)

I need to go over the head of the Mozilla Triage manager who has left https://bugzilla.mozilla.org/show_bug.cgi?id=1406865 open without a resolution for **seven years**. How do I do that? This is a bug reported in Firefox 57 and **still** not fixed in Firefox 125. I cannot find any support category anywhere in the Mozilla website that covers appealing a decision by one of their employees. The last comment from this uncooperative indivisual is "But given we support it on macOS and Windows yeah, it seems not very objectionable." Who is this **clerk** to override the fact that a number of customers very much find this "objectionable". I cannot find anything on https://www.mozilla.org/en-US/contact/ that addresses this issue. I cannot find even a surface mail address for Mozilla. For example my complaint has nothing to do with any of the following:

   I’m having problems with using Firefox
   I want to donate to Mozilla
   I have questions about using Mozilla’s trademarks
   I’d like to report misuse of a Mozilla trademark
   I want to hold an event in a Mozilla space
   I want Mozilla to sponsor my event
   I’d like permission to use a Mozilla logo
   I’m interested in Pocket’s sponsored content on Firefox
   I’m a member of the Press and have a question for Mozilla

Yes I am having a problem with Firefox, but the clerk responsible has, through sitting on this issue for **seven years**, basically told the entire community that he doesn't give a reservoir.

In particular I feel this unacceptable behaviour should be brought to the attention of senior management, but there are no contacts for anybody in senior management.

Asked by jamescobban prije 3 dana

Last reply by James prije 2 dana

How do I change the default app Firefox uses to open downloaded files?

Currently, when I try and open downloaded .txt files and .log files (that is, when I click on them directly from the download pop-up that appears at the top-right of the … (pročitajte više)

Currently, when I try and open downloaded .txt files and .log files (that is, when I click on them directly from the download pop-up that appears at the top-right of the browser), Firefox inexplicably opens Aegisub on my machine as the app to use. This is in contrast to when I open it directly from within my file browser, where it opens the Kate text editor, as suggested by the default app option in the permissions of the filetype.

How do I change the apps Firefox uses to open downloaded files? I've tried going into my settings and looking at applications, but .txt and .log don't appear, so I'm not quite sure what to do.

I'm on Kubuntu 22.04.3 LTS, using the Firefox deb package.

Asked by domojestic prije 3 dana

Last reply by jonzn4SUSE prije 2 dana

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… (pročitajte više)

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?

Asked by jamescobban prije 4 sedmica

Last reply by jscher2000 - Support Volunteer prije 3 dana

YouTube gets very laggy after a while - best way to restore performance?

I always keep two Youtube tabs open at all times on my computer. After a while of running, however, the site starts to get increasingly laggy, in a way that simply reload… (pročitajte više)

I always keep two Youtube tabs open at all times on my computer. After a while of running, however, the site starts to get increasingly laggy, in a way that simply reloading the tab does not fix. (I am aware that this is likely a result of one of the extensions I have installed that affects Youtube's behavior, specifically SponsorBlock and Return Youtube Dislike, but I am not willing to uninstall these.) I also know of a "force reload" - pressing ctrl + shift + R instead of just ctrl + R in order to clear the cache or something.

However, whenever Youtube starts getting really slow, I instead like to do something I call "crashing the tab" - I open my system monitor, look for the current most CPU-intensive "Isolated Web Co" process, and end it. This pops up an error message in Firefox that says "Gah - your tab just crashed!" and offering me the option to restore it. After restoring it from this window, the performance is back to normal.

My question is, is this beneficial, or is it functionally identical to a normal force-reload? Is the improvement I see between this method and force-reloading the page just placebo? And if not, is there a simpler way to do it without opening a second program?

Asked by alanwilson772 prije 3 dana

Last reply by Skgh12 prije 3 dana

Firefox deb package - Apparmor profile

Hello, I administer a small fleet of Ubuntu desktops. For a variety of reasons we avoid using Canonical's Snap package version of Firefox. Currently the fleet is using … (pročitajte više)

Hello, I administer a small fleet of Ubuntu desktops. For a variety of reasons we avoid using Canonical's Snap package version of Firefox.

Currently the fleet is using Firefox installed from the Mozilla Team PPA repo. However that repo can be incredibly slow and after reading about the new Firefox deb packages [1] from the Mozilla APT repository we would like to move to them. The problem is that these packages lack Apparmor profiles, so unfortunately my security team won't let me use them.

Would it be possible to add Apparmor profiles to these packages please? They would need to be applied only when an OS has Apparmor enabled, which may not be the default for Debian.

Thank you!

[1]: https://blog.mozilla.org/en/products/4-reasons-to-try-mozillas-new-firefox-linux-package-for-ubuntu-and-debian-derivatives/

Asked by Partially_Anonymous prije 3 dana

Firefox using FIDO2 security keys

I using kubuntu (ubuntu with kde) 22.04 and firefox will not recognize my security key. There is a really good thread on this here. It is now closed. https://support.m… (pročitajte više)

I using kubuntu (ubuntu with kde) 22.04 and firefox will not recognize my security key. There is a really good thread on this here. It is now closed.

https://support.mozilla.org/en-US/questions/1412073

One of the solutions is to install firefox from the mozilla server. On other forums, this is referred to removing snap and installing the debs. I haven't tried this.

Reading through the thread however, it seems like the snap version should work. The manufacurers id and product code for my Thetis FIDO2 usb key are present in the etc/udev/rules.d/70-snap.firefox.rules

This answer says to disable apparmor. I tried that, but it didn't work.

I have quoted this answer below.

This isn't actually a firefox problem. KDE Neon uses the firefox package from the Mozilla Team PPA and there's nothing wrong with that package. The problem is that Neon enables app armor on firefox which breaks access to password managers and security keys. sudo aa-disable usr.bin.firefox works around the problem by disabling app armor for firefox. aa-complain was not sufficient in this case.

Is there anything else I can try?

Asked by oilhat prije 4 dana

Homepage shortcut tiles disappearing, how to add more?

Hi, I'm using Firefox 125.0.3 64-bit with Linux mint and some of the tiles on the homepage have disappeared I have selected 4 rows in settings but only 2 and a half rows … (pročitajte više)

Hi, I'm using Firefox 125.0.3 64-bit with Linux mint and some of the tiles on the homepage have disappeared I have selected 4 rows in settings but only 2 and a half rows show, I can remove all rows and select 4 rows again but only 2 and a half rows will show all the edit, pin etc, options are there and work and I can rearrange the tiles but if I dismiss a tile it disappears completely, any help much appreciated. please see added image.

Asked by BlackTR900cc prije 4 dana

Sound glitches in KDE after visit some sites in Firefox

Steps for reproduce: Turn ON PC Launch Audacious player Launch Firefox Visit to drupal.org And I have sound glitches like on radio tuning. From all software, … (pročitajte više)

Steps for reproduce:

  • Turn ON PC
  • Launch Audacious player
  • Launch Firefox
  • Visit to drupal.org

And I have sound glitches like on radio tuning. From all software, that have sounds: players, browser, messengers. Glitches disappear after restart. I find only 2 sites, that make it: drupal.org and my local bank. With Chrome - no problems.

Without Audacious glitches can be to, but not in 100% of cases.

OS: KDE Neon Plasma 6

Asked by Alexandr Vasilenko prije 6 dana

Last reply by jonzn4SUSE prije 4 dana

I want to have an automated task that sorts the incoming mail to separate folders

I want to have an automated task that sorts the incoming mail to separate folders. I have done this easily in Outlook, but Firefox's Thunderbird is different and I haven'… (pročitajte više)

I want to have an automated task that sorts the incoming mail to separate folders. I have done this easily in Outlook, but Firefox's Thunderbird is different and I haven't figured it out. Any help would be greatly appreciated.

George

Asked by George prije 6 dana

Last reply by jonzn4SUSE prije 5 dana

Availability for Ubuntu ARM64 via Orange Pi 5+

I know that there is a generic Linux iteration that can be downloaded, but it does not appear to allow for use on ARM64. Is there a way that I can download, install, and … (pročitajte više)

I know that there is a generic Linux iteration that can be downloaded, but it does not appear to allow for use on ARM64. Is there a way that I can download, install, and access Firefox on my Orange Pi 5 Plus?

Asked by Caleb prije 1 sedmicu

Last reply by jonzn4SUSE prije 6 dana

issue with my mozilla account

Why you create Mozilla account with sync, if I can't use profile which I saved on my old PC. I change my PC and now I can't use my open tabs as needed, I need to open ea… (pročitajte više)

Why you create Mozilla account with sync, if I can't use profile which I saved on my old PC. I change my PC and now I can't use my open tabs as needed, I need to open each tab one by one. Why ??? Why I can't use saved profile on my new PC ??????

Asked by Arthur V. BABAYAN prije 1 sedmicu

How do I check what codec a page is serving?

In Chrome, I can hit CTRL+SHIFT+I to open developer tools, add the Media tab, and go to the Media tab, and I can see the codec and what decoder is being used. How do I d… (pročitajte više)

In Chrome, I can hit CTRL+SHIFT+I to open developer tools, add the Media tab, and go to the Media tab, and I can see the codec and what decoder is being used.

How do I do the same thing in Firefox?

Asked by firefox2506 prije 1 sedmicu

multiple issues with PiP on Ubuntu

For some time now, I've been experiencing the following issues with PiP: The floating window opens in a random (and annoying) place and does not place itself automati… (pročitajte više)

For some time now, I've been experiencing the following issues with PiP:

  • The floating window opens in a random (and annoying) place and does not place itself automatically on the lower right corner as it used to (where I always move it, so it has no memory as it used to)
  • It's impossible to keep the "always on top" mode on by default, and I have to do it every single time
  • When I toggle windows, the PiP window is always the next one, even when it was not the one I switched from, and I have to always toggle twice for switching between two windows when I have a 3rd PiP window
  • When I change language using the keyboard shortcut, it changes the language on the PiP window, and I have to use the language icon bar. Then, the PiP window becomes activated, and I have to toggle back to the window I was working on before (on which I wanted to change language). I have the "separate languages for separate windows" option activated.

It's been some months now, and all those things were working before an update but never came back...

Does anyone know if there's a way of fixing these issues? I've tried things I found online but nothing seems to work.

Many thanks

Asked by gtpeonta prije 1 sedmicu

Firefox DoH fails on Linux Mint XFCE and Fedora Kinoite

Hello, By default, DoH fails on Max Protection in the latest OS versions listed above. The workaround I've discovered is using https://1.1.1.1/dns-query, but I would rath… (pročitajte više)

Hello, By default, DoH fails on Max Protection in the latest OS versions listed above. The workaround I've discovered is using https://1.1.1.1/dns-query, but I would rather use the default settings.

Asked by coreywolfhart prije 1 sedmicu

Last reply by jonzn4SUSE prije 1 sedmicu