Skip Navigation

Search

How to remove Firefox Color theme?

Solution: I just needed to disable Firefox Color in about:addons.

I set a theme with Firefox Color, I tried changing the theme in settings to light or dark but neither work. I'm wondering if there are other ways to do so in Firefox that I could try. I'm on zen browser which is why it may not have worked.

1

Transparent page background without affecting content

Is there a way to do this with user CSS on Firefox?

The content has to have full opacity. So setting opacity through the compositor or the opacity CSS property does not count.

Setting a background-color with some alpha on userContent.css technically works but because the browser itself is fully opaque, doesn't show the background. Trying to set background-related properties on #browser on userChrome.css doesn't have an effect. If I can make only the background of #browser transparent, this'll work. But I don't know if that's possible.

edit: it is possible, with lots of caveats. Site-specific fixes will be required, popups are hard to read. If you have dark wallpapers enable dark reader to make site content readable on a dark background.

1- set browser.tabs.allow_transparent_browser to true

2- in userChrome.css add #main-window, #tabbrowser-tabpanels{ background: transparent !important; }

3- userContent.css: *{ background-color: transparent !important; } /* if you don't want full transparency */ html:root{ background-color: #00000080 !important; }

16

Applications remain open after their tabs are closed

I have recently realized that I will occasionally hear notification sounds from applications that I had previously opened but no longer has any active tabs (email client, discord, etc.). I'm assuming this means they are allowed to keep some sort of connection in the background until I close all Firefox windows. Is this a bug or a "feature"? How do I turn it off? I don't want any application running at any capacity except when I have tab(s) open for them.

Solution:

> Hm, Discord didn't have anything registered there. After some digging, I found about:debugging#workers which does list Discord stuff under "Other Workers". It's unsettling to see there's no way to force confirmation and/or disable these stuff. I use Discord when I have to every once in a while. I don't want their code running all the time in my browser.. > > edit: you can disable service workers with dom.serviceWorkers.enabled = false but this has no effect on Other Workers. > > edit2: uBlock can disable Other Workers by setting the filter ||$csp=worker-src 'none' in My Filters and enabling Suspend network activity until all filter lists are loaded in Filter lists. It funny how this "trick" is written for Chromium-based browsers with the note that Firefox allows global disabling of service workers when the sites can just register a different type of worker with no way of disabling them. I am sure the api is less powerful than service workers bla bla bla, let me decide what runs on my browser without needing third party tools, please.

13

Is there a way to download pages from reading mode as pdf or epub on mobile?

11

Is there a way to get Firefox to redirect me to the old Reddit without using an extension or logging in?

I use the term "Reddit" when I search for things a lot so I can get human responses to my questions but Reddit blocks VPN connections. Old reddit works though. All you need to do is change www. to old. I know extensions exist for it but I don't really want to install one for this and I no longer have an account on Reddit to set it in my preferences.

Edit: I think @chagall@lemmy.world gave me what I was looking for with REDIRECTOR. It's open source and has a privacy policy of not using analytics. It's an extension but it seems pretty reputable with a decent community.

11

My bookmark toolbar disappeared

I updated and I was able to move the "bookmark items" onto the bar. It must have been a bug or I was not understanding the process. I'm pretty sure I tried what I did to fix it, but who cares, it's fixed.

Not sure if this is the right place to post this, I'll delete if it isn't.

I have the settings to "always shown" and in the customize tool bar section to be shown. They also still show up under bookmarks and toolbar from the pulldown, but otherwise, the toolbar is blank. I have no idea why.

2

Firefox freezes randomly?

Hey there, I'm a long time firefox user and have never ever had any problems with firefox. But after the latest update, the browser will now just randomly freeze and it happens very often. It will freeze for over a minute at the time, making it impossible to use the browser. I've refreshed firefox as suggested on their websites, I've reinstalled but still all the same. Anyone got any suggestions to what I can try? Or anyone else experienced the same thing?

Edit: Using Garuda Linux

Solved: It's not firefox, it's Garuda issues. Thanks for the tips and tricks everyone gave 🙌

22

Firefox and local dns host names

[SOLVED] replaced router (for another reason) and new model works fine somehow

Hey guys, my Firefox on Android cant open selfhosted services using DNS host names on home wifi.

I moved to a new place, got new router, configured server with new local IP. On PC everything works fine, but on Android Firefox I get "Address Not Found" when I try to open local hostname. Using IP:port works, but its been working fine before we moved. Chrome on Android works fine, desktop PC works fine.

Im running pihole and nginx proxy manager on server (I reconfigured pihole, but settings should be the same as before). I have set server IP in router DNS settings. I have set static IP for wifi network on phone and DNS address of server (I think I didnt need this before, but now it doesnt work in chrome without it). I have 2nd pihole on rpi4 as secondary DNS server on both router and phone settings, but its not in use yet. When I reconnect to wifi firefox can open the page for like first 20 sec and then it stopps working.

What am I doing wrong? Ive been using firefox on android exclusively before we moved

12

Change date format without changing language on Linux?

Is it possible? I'd like my dates, time etc. to be displayed in the way I'm used to while keeping the browser in English. I've tried setting the LC_DATE environment variable as well, but it doesn't respect that.

Edit: Solved!

  1. go to about:config
  2. set intl.regional_prefs.use_os_locales to true
  3. restart firefox.
14

I'd like to switch from chrome, but all of my auto fill, and payment info.

Is there a simple app that can transfer everything easily? Like my favorites, browsing history and everything, including autofill setting and whatnot? I really just don't want to redo everything and essentially start fresh.

Edit*

Thank you everyone! I've used chrome for so long and the last time I tried fire fox over 13 years ago it didn't auto transfer anything, so I had no idea. And I will look into a 3rd party for password storage.

I'm not super savy with some things, so I don't really know what you mean by "self hosting" but I guess I'll look into that too.

Again thanks! Looks like I will make the switch!

48

Is there any way to disable text selection magnifier on Firefox for android?

I'm sure that it can be useful for a lot of people but for me magnifier's popup (on android) always getting in a way and makes text selection so much harder.

Is there any way to disable this feature, any entry in about:config for that, I'd like to turn it off browser wise?

--- Thanks @phorq@lemmy.ml, solution:

  • about:config
  • layout.accessiblecaret.magnifier.enabled
  • false
4