Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Disable save password prompt in chromium kiosk mode

We're developing an application for the raspberry pi which runs headless and opens up a chrome browser when launch is done. So if the user now enters credentials, chrome prompts with "Do you want Chromium to save your password for this site?"

So how can we disable this popup? I already searched the params for that but didn't found anything about that.

enter image description here

like image 363
Sithys Avatar asked Sep 04 '25 16:09

Sithys


1 Answers

I had this same problem, and I solved it by setting up a policy file:

/etc/chromium/policies/managed/no-password-management.json

{
    "AutoFillEnabled": false,
    "PasswordManagerEnabled": false
}

I was not able to find a way to do this with command-line flags, however.

like image 194
Douglas Manley Avatar answered Sep 07 '25 18:09

Douglas Manley