this post was submitted on 01 Sep 2025
26 points (71.7% liked)

technology

23947 readers
218 users here now

On the road to fully automated luxury gay space communism.

Spreading Linux propaganda since 2020

Rules:

founded 5 years ago
MODERATORS
 

God I wish chrome didn't remove manifest v2 meow-tableflip

Here is the list of things that piss me off about firefox:

  • It is dogshit slow
  • It eats up a ludicrous amounts of RAM, which I wasn't expecting since it's one of the main things people make fun of chrome for
  • It crashes constantly
  • It tries to push it's "AI" bullshit on me despite me turning it off on multiple occasions
  • It puts ads on my home page
  • It needs to be relaunched regularly because at some point it becomes too laggy to use. It even stops loading pages altogether
  • "Restore previous session" feature doesn't work half the time so restarting the browser is absolutely terrifying
  • Profile management is a mess

Are there any alternatives? Is Brave any good?

top 50 comments
sorted by: hot top controversial new old
[–] stupid_asshole69@hexbear.net 11 points 6 days ago* (last edited 6 days ago)

I’m not reading this whole thread. Use ctrl shift t to bring back the last closed. Use multi account containers plugin. Actually set your own home page, Firefox is showing you ads on its default homepage, not yours. Set up doh/dot. Set up a socks web proxy.

You also likely have something fucked up about your computer or network.

E: I made myself a liar and read the thread. OP is using a bunch of not the greatest extensions some of which are without a doubt causing the problems they are having.

[–] TerkErJerbs@lemmy.dbzer0.com 6 points 6 days ago (1 children)

If you weren't already using some type of local or remote blocking with chrome... You should with any browser. You can use DNS or a firewall to prevent any browser (and extensions therein) from phoning home and/or serving you bullshit.

[–] kleeon@hexbear.net 4 points 6 days ago (1 children)

I have adguard and technitium dns on my home server to block ads/bypass censorship. Is there anything else that's good to have?

[–] TerkErJerbs@lemmy.dbzer0.com 3 points 6 days ago* (last edited 6 days ago)

Those are good options. You should be able to find the domains serving ads/ai and block them. I've never seen an ad in Firefox other than their getpocket shit which i just block with DNS and disable in the app.

You can also plug one of these resolvers directly into the browser to nuke things at that level (adguard might offer this too I've never used it) https://controld.com/free-dns

[–] WellTheresYourCobbler@hexbear.net 3 points 6 days ago* (last edited 6 days ago)

Valid tbh. I just installed Firefox on a friend’s pc and they were immediately blasted with ads and ai bullshit. I turned it all off but that would leave a gross taste in my mouth if I was new to it myself.

I will say (alongside everyone else it seems) that once you turn it off you forget about these things because in my experience they’re pretty good with respecting me leaving them off.

[–] disco@lemdro.id 2 points 6 days ago

You gotta use librewolf

[–] PorkrollPosadist@hexbear.net 44 points 1 week ago* (last edited 1 week ago) (2 children)

Are there any alternatives? Is Brave any good?

No (well, sort of, but not really). Brave Software suffers from the same problem as Mozilla in terms of flailing desperately for monetization strategies, but Brave is downstream of Chrome (via Chromium), and ultimately bound for a similar fate unless they magically find the resources to fork and develop their own independent browser engine. They likely can hold on to Manifest 2.0 for some time, but at the cost of accumulating technical debt. There is also LibreWolf (my personal recommendation), which is downstream of Firefox, removing most of the weird shit Mozilla does to try to create an alternate revenue streams to the noose Google provides in the form of default search sponsorship. The only other alternatives worth consideration are Safari (Apple exclusive, no ad blocking, boo), and downstream browsers based on WebKit. These are getting pretty obscure though. Most have transitioned to Blink (Chromium) via QtWebEngine or their own means. Only a handful of noteworthy examples (like ~~qutebrowser~~ and Gnome Web) remain.

It eats up a ludicrous amounts of RAM, which I wasn't expecting since it's one of the main things people make fun of chrome for

Modern websites get more and more bloated, both computationally, and in terms of assets. Assets like images, scripts, stylesheets, audio / video, etc. need to be stored somewhere. These can either go in memory (fast, but consumes memory), onto your disk (at least an order of magnitude slower than memory), or be re-downloaded every single time they're needed ("dogshit" slow, and will destroy your quota on metered connections like mobile carriers).

Using RAM isn't inherently bad. It is the best place to cache data if the space is not needed for other purposes, and this cache can be purged very quickly. RAM that isn't being used does nothing for you, and caching things on the disk (HDD or SSD) causes wear over time, while caching things in DRAM does not. If it is not causing performance issues for other applications on the machine, it is not a problem.

The setting isn't exposed directly, but can be manipulated in about:config. Specifically browser.cache.memory.capacity. There are other settings under browser.cache.* regarding disk usage. By default (-1), they are set dynamically according to the amount of RAM and disk resources available on the system.

The whole point of caching though is to increase speed. Grabbing something directly from RAM instead of getting it over the wire is supposed to be fast. If it is caching an absurd amount of data and still going slow, something is wrong.

It crashes constantly

There has got to be something else fundamentally screwy going on with this computer. I don't mean to come across as a fanboy (because I am actually quite pessimistic about the direction the web is taking, and Mozilla's 'stewardship' of the only viable alternative to Google), but Firefox has always been among the most stable applications I have ever used. Occasionally, some websites don't work correctly, but things like crashes have been incredibly rare in my experience.

Web browsers are among the most valuable targets for zero-day exploits and malware. By necessity, they are among the most field-tested and hardened pieces of software around. This is one part of the reason why there are so few alternatives available. If your browser is regularly crashing, this is A: very atypical, and B: a cause for concern, as crashes often indicate a potentially exploitable programming / configuration error.

[–] dastanktal@hexbear.net 8 points 1 week ago

This is a really nice response, OP, you should listen to what this person has to say.

load more comments (1 replies)
[–] P1d40n3@hexbear.net 37 points 1 week ago (1 children)

I've been using Firefox for years, and I've never noticed ai being forced into it.

[–] kleeon@hexbear.net 13 points 1 week ago (3 children)

I'm talking about this thing that keep popping up with seemingly every update:

There was also some "AI summary" thing that popped up once but I turned it off and won't come back now thankfully

[–] buckykat@hexbear.net 27 points 1 week ago (2 children)

The AI shit is new. To disable it all, type about:config in the address bar and turn all these to false:

browser.ml.enable

browser.ml.chat.enabled

browser.ml.chat.menu

browser.ml.chat.shortcuts

browser.ml.chat.shortcuts.custom

extensions.ml.enabled

browser.tabs.groups.smart.enabled

browser.tabs.groups.smart.userEnabled

[–] bigpharmasutra@hexbear.net 15 points 1 week ago* (last edited 1 week ago)

Oooh thanks for this. I wasn't staying on top of the new settings so this is really helpful.

If anyone is making these or other about:config changes you need to restart the browser to effectively save them.

load more comments (1 replies)
[–] miz@hexbear.net 21 points 1 week ago (1 children)

huh, I have never seen that popup. maybe they're doing a slow rollout?

load more comments (1 replies)
[–] P1d40n3@hexbear.net 9 points 1 week ago

This is literally the first time I've seen that. Like holy shit, that would push me to uninstall...but then, I am using Firefox accounts to sync, tabs and passwords and whatnots...

Bleak shit, sorry you have to deal with that!

[–] BelieveRevolt@hexbear.net 34 points 1 week ago

Is Brave any good?

Brave is run by a chud who was kicked out of Mozilla for donating to some pro-Proposition 8 organization (anti-same sex marriage in case you don't remember) and the company pushes cryptocurrency hard. It's also another Chromium browser, so not an alternative in the same way as Firefox.

[–] GamersOfTheWorld@hexbear.net 33 points 1 week ago (7 children)

If you want another suggestion, LibreWolf is also pretty decent. Chuds hate it and I've been using it for a long while, to my satisfaction.

[–] kleeon@hexbear.net 10 points 1 week ago* (last edited 1 week ago) (3 children)

Gonna try LibreWolf then. I just hope at least "Restore previous session" works properly

[–] emdash@hexbear.net 14 points 1 week ago

On Firefox I have it set to always reopen my previous tabs and that works a lot more reliably

load more comments (2 replies)
load more comments (6 replies)
[–] emdash@hexbear.net 31 points 1 week ago (16 children)

The RAM thing (and it getting slow over time) is due to the default way it handles inactive tabs. Mozilla decided that users would probably prefer to have tabs be fast when switching between them, so they are kept "active" in RAM for basically ever. This was not the case back when RAM was considered a scarce resource.

I installed an extension to automatically unload tabs after a certain period of inactivity and RAM usage is no longer a problem. As of the most recent update you can also unload tabs manually natively.

As for the ads, AI, etc, all of that can be turned off, and generally only has to be turned off once. Though you may want to look into a fork that does this for you, like LibreWolf.

[–] Thordros@hexbear.net 10 points 1 week ago (1 children)

I installed an extension to automatically unload tabs after a certain period of inactivity and RAM usage is no longer a problem.

Which addon is this? Search engines are unfortunately useless these days, and I just got a thousand auto generated articles about how Firefox has an unload tabs context menu button now.

load more comments (15 replies)
[–] oscardejarjayes@hexbear.net 28 points 1 week ago (2 children)

"Restore previous session" feature doesn't work half the time so restarting the browser is absolutely terrifying

I've used that feature dozens of times for thousands of tabs, and never had a problem. Did it just not restore any tabs when you click the button?

load more comments (2 replies)
[–] dastanktal@hexbear.net 25 points 1 week ago (5 children)

Your entire post sounds like something one of my developers would type out after spending a half hour trying to figure out how to install a new piece of technology. As I tell them, your issues are probably due to a misconfiguration issue.

I use Firefox personally day to day and have very little issues with it. I'm going to point by point rebuttal:

Slow, don't know what you mean, I use it every day. Do you perhaps have other add-ons or something running in it that's causing it to slow down or maybe sites that don't work appropriately?

Firefox uses less RAM on average than Chrome, but a lot of your any of the Blink browsers. It is true that it uses less RAM, but there are other builds that are even leaner. I use it to maximize the amount of RAM I have access to on my system so I can run virtual machines in my professional career.

What AI bullshit are they pushing on you? I didn't even know Firefox had AI features. That's how little it bothers me and how little it actually comes up.

If it's crashing constantly, there seems to be a problem with your setup and not necessarily the technology itself.

Yes, their ad model is annoying, and the fact that they have ads to support themselves suck, but they have to make money somehow, and nobody else is paying for it

I don't relaunch my Firefox and use it to the tune of 50 plus tabs for 30 plus days straight with little issue. The new integrated sidebar tabs make this really nice.

I've literally never had the restore previous feature never not work for me, but you could also just install a session manager extension of which there are many if that's not good enough.

I will fully admit, profile management is a total wreck on this browser, so I won't actually complain about that point.

I'm not sure you should use any alternatives. I'm not entirely sure you can handle a browser correctly. However, I think Vivaldi would probably fit many of your pain points along the company embracing anti-AI.

Careful though, I think they have ads somewhere on their site too to support their browser.

Link to blog:

https://vivaldi.com/blog/keep-exploring/

[–] bigpharmasutra@hexbear.net 8 points 1 week ago (3 children)

Vivaldi wouldn't be my first chromium-based browser choice. Still too many privacy issues vs other browsers:

https://privacytests.org/

load more comments (3 replies)
load more comments (4 replies)
[–] RisingSwell@lemmy.dbzer0.com 24 points 1 week ago

That's interesting. I haven't had it crash in years and it restores perfectly for me. Firefox has a runtime that is about 20 seconds less than the runtime of my computer as well.

Weird behaviour.

[–] space_comrade@hexbear.net 22 points 1 week ago

Are we living in parallel timelines or something? I haven't had many issues with Firefox for years now, only the very occasional crash.

Anyway whatever slight shortcomings Firefox has compared to Chrome it's worth it for not essentially being spyware.

[–] tim_curry@hexbear.net 22 points 1 week ago* (last edited 1 week ago) (3 children)

As a Firefox user since version 40 because chrome would frequently scan my hard drive for no reason. It used to be so much worse lol this Firefox is good in comparison.

I’ve never used it myself but I’ve heard betterfox can help https://github.com/yokoffing/BetterFox

Mozilla has been very rapidly destroying itself. The plan to rewrite the rendering engine got scrapped so it’s still running gecko underneath it all. Unironically safari is better to use which I never thought I’d say. Idk why but Firefox takes ages to resolve the websites address but I never have this issue in other browsers. Crashing I’ve never personally had but I assume you’re a tab hoarder which yeah Firefox eats ram like nobodies business. Give betterfox a go see if it helps.

I’m not entirely sure why so many of the comments are being unhelpful and rude. “It’s a configuration issue” doesn’t really help anyone and theres a an expectation that software works in its default state. I however use Firefox from an ideological anti google standpoint but I’ve never considered it a good browser lol I just put up with its shit. My favourite bug was for years if I added a new browser to the account sync it would duplicate all my bookmarks and for ages my bookmarks were in a terrible state. I eventually went to clean them up which somehow resulted in my phone losing all of them which then synced back to my desktop. 10/10 software took 3 billion years to add vertical tabs… still has the superior dev tools though

Also not sure why several comments are denying Mozilla’s shift into ai it’s literally their main strategy right now there’s a fucking glowing ai button in the sidebar…

A tip for people here if you want to actually help someone don’t just reply with “works on my machine guess you’re stupid” it’s not helpful and it’s extremely Reddit coded behaviour and doesn’t help move people to using Firefox. Same goes for this websites Linux advice it’s atrocious

load more comments (3 replies)
[–] miz@hexbear.net 15 points 1 week ago (6 children)

huh I am not sure I've ever had it crash. maybe once or twice ever?

load more comments (6 replies)
[–] MaoTheLawn@hexbear.net 15 points 1 week ago

Just to hop on what other people are saying, your Firefox/computer must be the problem because in my experience Firefox is very stable and doesn't tend to crash.

[–] Wertheimer@hexbear.net 14 points 1 week ago (1 children)

You can also press CTRL+SHIFT+D to bookmark all tabs and name the folder something like "Stuff I told myself I'd look at on 08/31/25."

But who am I to talk - my friends are baffled by how I've never used the "archive" function on my emails, and I don't exactly understand their ways, either.

[–] Le_Wokisme@hexbear.net 8 points 1 week ago

why do that when i can just have 700 tabs open including hexbear tabs from five accounts ago?

[–] pierre_delecto@hexbear.net 13 points 1 week ago

I had an issue with Firefox crashing all the time and it turned out to be a bad RAM stick. You might try running a mem test just to rule that out.

[–] communism@lemmy.ml 12 points 1 week ago (2 children)

I've never had any of these problems even on stock Firefox.

Try Librewolf. It's a Firefox fork with sensible defaults (ad blocker preinstalled, telemetry disabled, some privacy settings enabled by default, no AI bullshit).

Some of the things you describe are definitely bugs you should be reporting to Mozilla. The crashes, memory usage, slowness, etc. I don't experience them and they sound unusual to me.

"Restore previous session" feature doesn't work half the time so restarting the browser is absolutely terrifying

I'm gonna be honest—it sounds like you're using the feature for things it's not intended for. If you want to save pages to go back to, you should use bookmarks. I only use "restore previous session" upon crashes or when I restart my browser due to an update, and it works fine for those use cases.

load more comments (2 replies)
[–] SkingradGuard@hexbear.net 9 points 1 week ago

I have never had these problems before idk how people get such buggy firefoxes

[–] sexywheat@hexbear.net 8 points 1 week ago
load more comments
view more: next ›