Chrome Policy List on Fedora

7

1

I've installed Chrome Version 74.0.3729.131 (Official Build) (64-bit) on Fedora 30 from the official google-chrome repository, and if I go to the chrome://settings/help I see the little "Your browser is managed by your organization" thing on my home computer (so no organization).

So, I go to chrome://policy and see two entries for the policies:

AuthNegotiateDelegateWhitelist *.fedoraproject.org

AuthServerWhitelist*.fedoraproject.org

How can I disable this "Your browser is managed by your organization" stuff and remove these whitelists?

Batman

Posted 2019-05-05T19:14:42.973

Reputation: 143

Answers

5

Yes, I just noticed this too (and I'm pretty miffed)!

Delete

    /etc/opt/chrome/policies/managed/00_gssapi.json

Michael K.

Posted 2019-05-05T19:14:42.973

Reputation: 66

Deleting didn't work for me, but replacing the contents with {} worked. Thanks! – Batman – 2019-05-05T22:12:44.733

10

You can remove it by the line:

sudo dnf remove fedora-chromium-config

Orbit

Posted 2019-05-05T19:14:42.973

Reputation: 101

2This should be the correct answer. Also to prevent it from being installed in the future you can exclude it from dnf by adding the following line to /etc/dnf/dnf.conf:

excludepkgs=fedora-chromium-config* – Jorge Núñez – 2019-10-30T18:36:17.110