Check the output of the command below to list all installed images by the packages google-chrome-stable
, google-chrome-unstable
, google-chrome-beta
dpkg -l | awk '/google-chrome-/ {print $2}' | xargs -i'{}' dpkg -L {} | grep -P 'png|jpg'
Example output
/opt/google/chrome-beta/product_logo_32.png
/opt/google/chrome-beta/product_logo_22.png
/opt/google/chrome-beta/product_logo_128.png
/opt/google/chrome-beta/product_logo_48.png
/opt/google/chrome-beta/product_logo_64.png
/opt/google/chrome-beta/product_logo_16.png
/opt/google/chrome-beta/product_logo_256.png
/opt/google/chrome-beta/product_logo_24.png
These icons are used in the tray. You can check it, if you trust me, with the next command. The command removes all the icons.
dpkg -l | \
awk '/google-chrome-/ {print $2}' | \
xargs -i'{}' dpkg -L {} | grep -P 'png|jpg' | \
sudo xargs rm
After that kill all chrome processes and restart Chrome again. It appears no icon.
Now install Chrome again via
sudo apt-get install --reinstall google-chrome-…
and customize your icons. :)
dpkg -L google-chrome-stable | grep -P 'png|jpg'
– A.B. Aug 24 '15 at 11:45