• @VelvetStorm
    link
    English
    46 months 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
      166 months 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
          66 months ago

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

          • @Katana314
            link
            English
            16 months 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
              36 months 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.