From Google chrome download page:
Note: Installing Google Chrome will add the Google repository so your
system will automatically keep Google Chrome up to date. If you don’t
want Google's repository, do “sudo touch /etc/default/google-chrome”
before installing the package.
So to fix it:
Remove that file
sudo rm /etc/default/google-chrome
Reconfigure chrome package to add repository
sudo dpkg-reconfigure google-chrome-stable
Check using grep -r google /etc/apt/sources.list.d/, no output then reinstall it.
sudo dpkg -r google-chrome-stable
sudo dpkg -i google-chrome-stable_current_*.deb
Otherwise add it manually
64bit:
echo "deb [arch=amd64] http://dl.google.com/linux/chrome/deb/ stable main" | sudo tee /etc/apt/sources.list.d/google-chrome.list
32bit:
echo "deb [arch=i386] http://dl.google.com/linux/chrome/deb/ stable main" | sudo tee /etc/apt/sources.list.d/google-chrome.list
/etc/default/google-chrome– user.dz Oct 25 '16 at 21:39