_           _                 
 | |_ ___  __| |____  ___ _   _ 
 | __/ _ \/ _` |_  / / _ \ | | |
 | ||  __/ (_| |/ / |  __/ |_| |
  \__\___|\__,_/___(_)___|\__,_|

Launch Chromium browser without keyring popup

The following command opens a Chromium browser window without multiple popups asking you to set a default keyring password:

chromium --temp-profile --incognito --password-store=basic
Command line argument Purpose
--temp-profile Use a disposable user profile. A temporary user profile directory will be created in /tmp and deleted when the browser exits. This is handled by /usr/bin/chromium, which is a Bash script.
--incognito Start the browser in incognito mode.
--password-store=basic This instructs Chromium to use basic unencrypted password storage, which prevents the "Choose password for new keyring" popups from appearing at startup.