The new MV3 architecture reflects Google’s avowed desire to make browser extensions more performant, private, and secure. But the internet giant’s attempt to do so has been bitterly contested by makers of privacy-protecting and content-blocking extensions, who have argued that the Chocolate Factory’s new software architecture will lead to less effective privacy and content-filtering extensions.

For users of uBlock Origin, which runs on Manifest V2, “options” means using the less capable uBlock Origin Lite, which supports Manifest V3.

  • bobs_monkey
    link
    fedilink
    English
    arrow-up
    23
    arrow-down
    1
    ·
    20 days ago

    Looks up LibreWolf on AUR

    Holy dependencies batman!

      • bobs_monkey
        link
        fedilink
        English
        arrow-up
        14
        ·
        edit-2
        20 days ago

        It just has a crap load of software packages it depends on to work properly (though a number of them seem like fonts). I have reasonably fast computer, and it’s been compiling for about 45 minutes at this point.

          • bobs_monkey
            link
            fedilink
            English
            arrow-up
            5
            ·
            20 days ago

            Just did with librewolf-bin, thanks. I always forget to look for the binary packages specifically on AUR.

        • TachyonTele
          link
          fedilink
          English
          arrow-up
          3
          ·
          20 days ago

          Ah compile… guess I’ll stick with regular Firefox. There are some magiks I don’t tamper with.

            • bobs_monkey
              link
              fedilink
              English
              arrow-up
              4
              ·
              20 days ago

              How is the flatpak system? I’ve never dug into it.

              • Refurbished Refurbisher@lemmy.sdf.org
                link
                fedilink
                English
                arrow-up
                8
                ·
                20 days ago

                It’s really nice. It’s compatible with all Linux distros and it provides some configurable sandboxing via bubblewrap that you don’t get with other repos. The sandboxing is easilly configurable using a GUI like Flatseal.

                • bobs_monkey
                  link
                  fedilink
                  English
                  arrow-up
                  2
                  ·
                  20 days ago

                  Interesting, thanks for the insight. One of these days I’ll spin up a VM to play around with it.

                  • Refurbished Refurbisher@lemmy.sdf.org
                    link
                    fedilink
                    English
                    arrow-up
                    2
                    ·
                    20 days ago

                    I’m guessing you don’t already use Linux? Just keep in mind that with a VM, the GPU has to be emulated (except for edge cases, like passing through a hardware GPU or going headless), which will heavilly impact performance. There is also the option of dipping your toe using a live USB stick (basically every distro has this as an option), but that has its own performance penalty due to running off of a USB stick.

                    I’d recommend actually installing it to try it out to get the full performance of your hardware, and to make sure that everything you have is compatible (most hardware is compatible out of the box)

          • grue@lemmy.world
            link
            fedilink
            English
            arrow-up
            4
            ·
            20 days ago

            I mean, if you’re intimidated by compiling you probably shouldn’t be using Arch to begin with.

            (I’m hoping that you didn’t understand the “on AUR” part of the comment as well as the “dependencies” part, and actually use a more reasonable distro that isn’t subject to the issue @bobs_monkey is complaining about.)

            • TachyonTele
              link
              fedilink
              English
              arrow-up
              5
              ·
              20 days ago

              You’re right. I don’t even know what Arch is to want to try and use it.

              • grue@lemmy.world
                link
                fedilink
                English
                arrow-up
                3
                ·
                20 days ago
                • Arch is a Linux distribution that intentionally requires a bunch of relatively-complicated manual steps to install, so “I use Arch BTW” has become a meme among people who want to brag about how ‘l33t’ they are.

                • AUR is Arch’s package manager.

                • A package manager is a software database that lets you easily install apps with a single command (e.g. [tool-name] install [app-name]) along with all the software libraries they depend on (i.e. their ‘dependencies’), such that you only need one copy of each library no matter how many apps use it.

                (Without a package manager, there are two other ways installing apps can work: either an app can come with its own copy of all its dependencies, which means it takes up a lot of disk space unnecessarily, or the user can be responsible for installing all the dependencies separately, which is a gigantic pain in the ass. Windows takes the former approach, while Linux, before package managers were invented, tended to do the latter because open-source software was distributed mostly as source code you had to compile and link yourself.)