Google-chrome – How to stop users from viewing saved passwords in Chrome

google-chromepasswords

There's a function in Chrome called "Manage saved passwords":

chrome://settings/passwords

This allows you to view all the passwords you have saved into Chrome (and new ones get added in there when you allow Chrome to remember a password).

I want to be able to set it up so that any saved passwords cannot be viewed by users, at least not without entering some kind of master password (such as the admin password to the PC or something).

Is there any way to do this or something similar through a workaround? Hell, I'd even be OK with disabling the feature completely (in such a way that it can't be enabled again unless a password is entered).

Best Answer

There are several dozen registry settings for Chrome, where you can disable many things, one of them the *Password Manager(.

If you lock these settings in by removing write access to the respective keys for non-admins, users cannot change them back.
Find or create HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Google\Chrome\PasswordManagerEnabled, and set it to (DWORD) 00000000 to disable.
There is also "ImportSavedPasswords" (same path), and some others.

Related Question