• @JustARegularNerd
    link
    English
    54
    edit-2
    26 days 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
        25 days 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
      1426 days 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
        626 days ago

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

    • @VelvetStorm
      link
      English
      426 days 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
        1626 days 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
            626 days ago

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

            • @Katana314
              link
              English
              126 days 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
                325 days 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
      25 days 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
      26 days 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
        1726 days 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.