We’ve been anticipating it for years,1 and it’s finally happening. Google is finally killing uBlock Origin – with a note on their web store stating that the …

  • underthesign@lemmy.world
    link
    fedilink
    English
    arrow-up
    0
    ·
    5 days ago

    Firefox needs to work on ensuring seamless compatibility with more websites, web apps and so on, because I’m personally very bored with my kids’ schools and related services sending out emails and forms with links that simply won’t open in FF but are clearly expecting Chrome or Edge where they work fine. Yes, this is on the lazy developers, but if FF want wider scale take-up outside of geeky niche groups then this is the stuff they must fix.

    • Blackmist@feddit.uk
      link
      fedilink
      English
      arrow-up
      0
      ·
      4 days ago

      Yeah, unfortunately the next step will be sites rejecting “unsecure” browsers because they want the ad money.

      This is going to get worse, not better.

    • lightnsfw@reddthat.com
      link
      fedilink
      English
      arrow-up
      0
      ·
      4 days ago

      It’s pretty trivial to just use an alternate browser for the garbage sites that don’t support FF.

    • cum@lemmy.cafe
      link
      fedilink
      English
      arrow-up
      0
      ·
      4 days ago

      What you’re talking about is webcompat and is a very complicated issue. Also I’ve talked to some Mozilla devs who gave me multiple examples of Chromium rendering something wrong, and they’d have to intentionally break Firefox to render it incorrectly too, just so the end user would get a more consistent experience. Of course these issues happen more and more when things are only tested for one browser.

      • ElectricMachman@lemmy.sdf.org
        link
        fedilink
        English
        arrow-up
        0
        ·
        4 days ago

        Maybe there could be some sort of compatibility flag in Firefox which detects non-standard pages designed for Chrome. We could call it… hmm… something like Quirks Mode?

      • Yi K@lemmy.world
        link
        fedilink
        English
        arrow-up
        0
        ·
        4 days ago

        This is Chromium monopoly. At this time instead of W3C standards, Chromium itself becomes the standard.

    • fxdave@lemmy.ml
      link
      fedilink
      English
      arrow-up
      0
      ·
      5 days ago

      Slack calls disabled for firefox users, but if you change the user agent to chrome it works…

      • Excrubulent@slrpnk.net
        link
        fedilink
        English
        arrow-up
        0
        ·
        5 days ago

        Almost like it does work on Firefox but for some reason they don’t want you using it. Honestly it’s so damn weird, why do that? Is there some incentive for them?

    • realitista@lemm.ee
      link
      fedilink
      English
      arrow-up
      0
      ·
      5 days ago

      I encounter this very infrequently. I think I only have 1-2 examples at work. It’s not a huge deal for me to spin up a chrome for those one or two occasions.

        • realitista@lemm.ee
          link
          fedilink
          English
          arrow-up
          0
          ·
          edit-2
          4 days ago

          Sounds interesting, care to expand?

          The only concrete one I can actually recollect is generating a quote from our quoting tool in Salesforce. I just ended up running my 100+ Salesforce windows in Chrome because it has a good feature where you can name each window so I can see which customers I’m working on in the taskbar. It’s good to have those cordoned off from my normal browsing anyway. So this one doesn’t bother me. For everything else I use Firefox.

          • Petter1@lemm.ee
            link
            fedilink
            English
            arrow-up
            0
            ·
            4 days ago

            I used this prompt

            I want to create an electron app for linux of a third party webapp

            How would I do that?

            And chatGPT gave me a good instruction, will try that out. Apparently, you only need node, electron and the javascript like this:

            
            const { app, BrowserWindow } = require('electron')
            
            function createWindow() {
              // Create the browser window
              const win = new BrowserWindow({
                width: 800,
                height: 600,
                webPreferences: {
                  nodeIntegration: true
                }
              })
            
              // Load the third-party web app
              win.loadURL('https://www.thirdpartyapp.com')
            
              // Optionally remove the default menu
              win.setMenu(null)
            
              // Open DevTools (optional for debugging)
              // win.webContents.openDevTools()
            }
            
            // Run the createWindow function when Electron is ready
            app.whenReady().then(createWindow)
            
            // Quit when all windows are closed
            app.on('window-all-closed', () => {
              if (process.platform !== 'darwin') {
                app.quit()
              }
            })
            
            app.on('activate', () => {
              if (BrowserWindow.getAllWindows().length === 0) {
                createWindow()
              }
            })
            
            
              • Petter1@lemm.ee
                link
                fedilink
                English
                arrow-up
                0
                ·
                4 days ago

                Electron is a tool to bundle a website and a interpreter for that website in an application. That works on many platforms. Official discord desktop app, for example, is an electron app, spotify as well.

    • yoasif@fedia.ioOP
      link
      fedilink
      arrow-up
      0
      ·
      5 days ago

      Firefox can’t fix all the broken sites in the world, but they do investigate issues reported to https://webcompat.com

      You can help by reporting sites that don’t work for you.