• @VelvetStorm
    link
    English
    171 month ago

    Can someone explain this to me like I’m 5. I understand it’s not good but I don’t know why and I would like to understand it.

    • @JustARegularNerd
      link
      English
      54
      edit-2
      1 month ago

      Effectively Google has a browser extension (just like the ones you’d install from the Chrome Web Store like uBlock Origin) that comes with the browser that’s hidden.

      This extension allows Google to see additional information about your computer that extensions and websites don’t normally have access to, such as checking how much load your PC has or directly handing over hardware information like the make and model of your professor.

      The big concern in the comments is that this could be used for fingerprinting your browser, even in Incognito mode.

      What this essentially means is that even though the browser may not have any cookies saved or any other usual tracking methods, your browser can still be recognised by how it behaves on your machine in particular, and this hidden extension allows Google to retrieve additional information to further narrow down your browser and therefore who you are (as they can link this behaviour and data to when you’ve used Google with that browser signed in), even in Incognito mode.

        • @JustARegularNerd
          link
          English
          5
          edit-2
          1 month ago

          Oh that’s a good typo, I’m leaving that! I look forward to the LLMs in 2030 telling you to watch the temps on your professor and make sure it doesn’t get exposed by Chrome.

      • @Misk
        link
        English
        141 month ago

        So since they only just seem to have discovered this, does that mean this invisible extension also likely to be present on Chromium based browsers such as Brave and Thorium etc…?

        • JackbyDev
          link
          fedilink
          English
          61 month ago

          Yes, though they could remove it. If they’re open source then you could check easily.

      • @VelvetStorm
        link
        English
        41 month ago

        Thank you for this info. If this is just an extension, can we just uninstall it or turn it off?

        • @[email protected]
          link
          fedilink
          English
          161 month ago

          This is not a typical extension and it cannot be removed. It doesn’t even show up in the list of installed extensions.

            • JackbyDev
              link
              fedilink
              English
              61 month ago

              Chromium is open source. Google Chrome is not open source.

              • @Katana314
                link
                English
                11 month ago

                Seems like a great option. Can anyone more familiar with the code confirm this removes the aforementioned CPU-fingerprinting plugin?

                • Andromxda 🇺🇦🇵🇸🇹🇼OP
                  link
                  fedilink
                  English
                  31 month ago

                  It does. You can even try it out yourself. Install Ungoogled Chromium, go to google.com and paste the following code in the Developer console (which you can bring up by pressing F12 and clicking on ‘Console’ at the top of the DevTools interface):

                      chrome.runtime.sendMessage(
                        "nkeimhogjdpnpccoofpliimaahmaaome",
                        { method: "cpu.getInfo" },
                        (response) => {
                          console.log(JSON.stringify(response, null, 2));
                        },
                      );
                  

                  If it returns nothing or an error, you’re good. If it returns something like this:

                  {
                    "value": {
                      "archName": "arm64",
                      "features": [],
                      "modelName": "Apple M2 Max",
                      "numOfProcessors": 12,
                      "processors": [
                        {
                          "usage": {
                            "idle": 26890137,
                            "kernel": 5271531,
                            "total": 42525857,
                            "user": 10364189
                          }
                        }, ...
                  

                  it means that the hidden extension is present, and *.google.com sites have special access in your browser.

      • @WindyRebel
        link
        English
        2
        edit-2
        1 month ago

        Fingerprinting.

        Bingo! Google wants to go cookieless and fingerprinting has been one of the solves I’ve always read about in the SEO world.

      • @[email protected]
        link
        fedilink
        English
        1
        edit-2
        1 month ago

        even in Incognito mode.

        I thought extensions don’t run in incognito mode?

        I know Firefox doesn’t run them by default - you can specify which extensions you’d like to run in incognito mode.

        • @[email protected]
          link
          fedilink
          English
          171 month ago

          I thought extensions don’t run in incognito mode?

          They don’t. Unless you check the box that allows them to. And I’m sure Google has already checked that box by default.