Firefox

17794 readers
35 users here now

A place to discuss the news and latest developments on the open-source browser Firefox

founded 4 years ago
MODERATORS
651
 
 

Funny blog post about the birth of mozilla.

652
 
 

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

edited the heading of the question. I think most of us here are reasoning why more people are not using firefox (because it was the initial question), but none of that explains why it's actively losing marketshare.

I don't agree ideologically with Firefox management and am somewhat of a semi-conservative (and my previous posts might testify to that), I think Firefox browser is absolutely amazing! It's beautiful and it just feels good. It has awesome features like containers. It's better for privacy than any mainstream browser out there (even counting Brave here) and it has great integration between PC and Phone. It's open-source (unlike Chrome) and it supports a good chunk of extensions you would need.

This was about PC, but I believe even for Mobiles it looks great and it allows features like extensions (and I hear desktop extensions are coming to firefox android?), it's just a great ecosystem and it's available everywhere unlike most FOSS softwares.

So why is Firefox's market share dying?

I mean, I have a few ideas why it might be, maybe correct me I guess?

  1. Most people don't know how to use extensions well and how to use Firefox well. (Most of my friends in their 30's still live without ad blockers, so I don't think many are educated here)
  2. It's just not as fast as Chrome or Brave. I can't deny this, but despite of this, I find it's worthy.
  3. It's not the default.
  4. Many features which are Google specific aren't supported.
  5. Many websites are just not supporting firefox anymore (looking at you snapchat), but you would be right in saying this is the effect of Firefox losing it's market share not the cause (at least for now) and you would be right.

But what else?

I might take time (a lot of it) to get back at you, thanks for understanding.

occasionally I’ll find websites that don’t work 100% because they were coded primarily for chromium based browsers. FU Google

654
 
 

I was trying to disable telemetry on firefox after having refreshed it (it wiped out everything and reset everything)

And I found this github page to be very concise and to the point. If you are planning on disabling telemetry, this might help https://github.com/K3V1991/Disable-Firefox-Telemetry-and-Data-Collection

655
 
 

edit: Oct 2 This didn't solve the problem. i.e., it randomly still reappears sometimes.

https://sh.itjust.works/post/3128264

edit: I refreshed firefox and except for one website, whatsapp and other websites seems to be working fine. Make sure you save the extensions and extension settings (and if you are not logged into your Mozilla account, everything else before you do it, even the themes, I lost a good theme because I didn't save it and even my mozilla account didn't sync it back)

I posted this a few days go and I am facing the same problem even now and I was wondering if someone knows how to make the clipboard paste thing work like Normal. I am using Linux. I can't paste images in some websites and texts in some websites at random times. One time it might work and another time it might not work. It was supposed to be a bug which was fixed by Monday (this monday), but it isn't fixed and it persists no matter what the state of dom.event.clipboardevents.enabled

656
 
 

Article Link: https://blog.mozilla.org/en/mozilla/we-need-more-than-deplatforming/

Pretty weird coming from firefox if you ask me.

657
 
 

How does it work anyway? I mean, how does Firefox make money? Are they paid per google search or something like that?

And, do they make money if I use forks of firefox and use Google on them?

And, what are the total number of active users for Mozilla and do the forks account into this count?

658
 
 

So I'm having an issue where the two finger swipe to go back to the main inbox doesn't work when viewing an email. I can swipe forward from the inbox to go forward to the page that an email is on. This only occurs on Firefox. I tried both Chrome and Safari and both allow the gesture.

Any clues as to what can be causing that?

659
660
 
 

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!

661
 
 

One of the main arguments brought forth for the switching to the WebExtensions system for browser extensions was that it made cross-browser extensions easier. Firefox users may now reap the benefits of this promise, as Mozilla has implemented functionality in the browser to import extensions from other browsers.

The feature, which is in testing at the moment, can be enabled by all users of the latest stable version of Firefox.

The feature is limited at the time to Google Chrome and select extensions. Even though Firefox and Chrome extensions use the same framework, WebExtensions, they are not compatible immediately. Firefox users who attempt to install extensions from Chrome's Web Store may notice that this is not working.

662
 
 

In Firefox you can combine JS bookmarklets, keywords and params to do something like this:

javascript:(function(){
    var args = '%s'.split(' ');
    alert(args);
})();

Useful example:

javascript:(function(){
    var args = '%s'.split(' ');
    var subreddit = args[0];
    var search = args[1];
    document.location.href = "https://www.reddit.com/r/" + subreddit + "/search/?q=" + search + "&include_over_18=on&restrict_sr=on&t=all&sort=new";
})();

Bookmarklet format:

javascript:(function() {var args = '%s'.split(' ');var subreddit = args[0];var search = args[1];document.location.href = "https://www.reddit.com/r/" + subreddit + "/search/?q=" + search + "&include_over_18=on&restrict_sr=on&t=all&sort=new";})();

If you assign the keyword redditsearch to that bookmarklet, you can type redditsearch PixelArt zelda on the firefox navbar and you will be reditected to the Reddit search for 'zelda' on r/PixelArt.

In general this makes the navbar a very powerful command line in which you can add any command with multiple params.


It seems Mozilla has plans to get rid of this feature, see the ticket Migrate keyword bookmarks into about:preferences managed Search Engines. The good news is that the last comment, besides mine asking them not to remove this functionality, is from some years ago. I hope they change their mind, or forget about it...


TIP: If you don't want to remember the param order, you can also ask for them with a prompt if no arguments are specified:

javascript:(function(){
    var args = '%s'.split(' ');
    var subreddit = args[0] != "" ? args[0] : prompt("Enter the subbreddit:");
    if (!subreddit) return;
    var search = args.length > 1 ? args[1] : prompt("Enter the text to search:");
    if (!search) return;
    document.location.href = "https://www.reddit.com/r/" + subreddit + "/search/?q=" + search + "&include_over_18=on&restrict_sr=on&t=all&sort=new";
})();

Bookmarklet format:

javascript:(function(){ var args = '%s'.split(' '); var subreddit = args[0] != "" ? args[0] : prompt("Enter the subbreddit:"); if (!subreddit) return; var search = args.length > 1 ? args[1] : prompt("Enter the text to search:"); if (!search) return; document.location.href = "https://www.reddit.com/r/" + subreddit + "/search/?q=" + search + "&include_over_18=on&restrict_sr=on&t=all&sort=new"; })();

Sorry for the reddit examples, this was posted originally on r/firefox some time ago and adapting them to lemmy seemed a bit too much work :P.

663
 
 

I was searching through about:config and saw this, looks interesting. What does this do? and is this worth enabling?

privacy.resistFingerprinting.randomization.daily_reset.enabled

664
665
 
 

Sur #iOS, le navigateur #chrome de #google va maintenant permettre d'avoir la barre d'adresses en bas de l'écran, comme...#safari depuis 2 ans.

Cette disposition améliore #UX en facilitant l'utilisation à une seule main, il est ainsi très facile d'accéder à cette barre avec le pouce.

Mais #apple n'a pas été le précurseur de cette fonctionnalité, puisque le navigateur #sailfishos, basé sur @firefox, permettait déjà cela en...2014.

https://sailfishos.org/

666
 
 

I'm trying to switch to Floorp right now from Firefox, where I have both the regular horizontal tabs, and a flat vertical list with the Tree Style Tab extension. I use the later a lot, and while I could keep this setup in Floorp, I like that the vertical tabs can be native instead of using TST. However, it just feels weird to not have horizontal tabs. I think I might miss seeing a bunch of my tab titles at a glance with it, but I have to use it more and see how I feel.

667
 
 

So I'm finally switching to Firefox (admittedly for the quite shallow reason that Chrome has dropped its dark mode for websites toggle)

Wondered if anyone had any pro tips? I've installed uBlock Origin and Dark Reader extensions. I've made an account so it'll synch tabs etc across my tablet and phone. Just wondered if Firefox on mobile had any nice features worth trying out

668
 
 

I'm running KDE Plasma, with the latest Firefox and have the titlebar turned off in the customize settings. When I set Firefox to use the "System theme - auto" it correctly uses my window decorations from the GTK theme I set in KDE's settings (top). Any Firefox theme I apply changes the window decorations to the below pic. Is there a way I can edit a theme to respect my system defined window decorations, or else I guess I'm looking for how edit the theme itself so I can define what decorations to use manually.

669
 
 

Okay so i have a addon that gives me a google logo i can press to try my search in google if i cant find something on duckduck go but i would like to have the opposite too so a button that would let me click to search on duckduck if googleing isn't successful eg. If someone sends me a google search link

670
 
 

671
 
 

Does @firefox not support wasm on #riscv? I see back in janurary spidermonkey js was ported to riscv but i dont see any references to the wasm side of things and it looks like a test wasm video editor doesn’t work on my #pinetabv while the js portion works fine https://d2jta7o2zej4pf.cloudfront.net/

672
 
 

I've made the mistake of building my workflow around a non-open thirdparty tool... Tactiq automatically saves the transcriptions of online meetings on google meets and Teams. I know both allow you to save transcripts if you're the meeting organizer but I'm usually not the organizer. I've tried to find similar tools for Firefox but haven't found much and what I did find didn't work the way I expected.

Is there anything that does a similar job but works with Firefox and preferably saves everything locally.

673
 
 

source code is availabe here. I'd appreciate feedbacks!

674
 
 
675
 
 

cross-posted from: https://programming.dev/post/1924228

Hey everyone, check the Linguist

  • you can translate texts offline (with sent no one single byte to a Google and stay private)
  • a lot of features and flexible configuration
  • dictionary + history for learn languages
  • it is are hackable - you can write code to use your own translation service
view more: ‹ prev next ›