Chromium - Another open source browser

mail

Chromium : Enter password to unlock your keyring

Situation

Every time I open Chromium, I get a pop-up asking :

Enter password to unlock your keyring

Let's make this clear, Chromium :
Stop harassing me with this f*cking prompt every time !!!

Details

Solution

This is a quick'n'dirty version of the XFCE procedure linked above. Understand what you type, use at your own risk.
As root :
  1. edit /usr/share/applications/chromium.desktop
  2. change
    Exec=/usr/bin/chromium %U
    into
    Exec=/usr/bin/chromium %U --password-store=basic
  3. forbid changes to this file :
    chattr +i /usr/share/applications/chromium.desktop

as root :
configFile='/usr/share/applications/chromium.desktop'; sed -i 's|Exec=/usr/bin/chromium %U|Exec=/usr/bin/chromium %U --password-store=basic|' "$configFile" && chattr +i "$configFile"